0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

PC初期セットアップ効率的な方法

Posted at

PCセットアップ時アプリを一括インストールする方法

最近は情報がクラウドに集約され、様々なセットアップが非常に楽になりましたが、
アプリのDLも面倒だと思い、一番楽な方法を調べました。

①旧PCに入っているアプリ一覧を取得。

winget list > installed_apps.txt

②.batファイルを作る
 ①で取得したアプリ一覧から「Source」がwingetになっているアプリのIDをコピーし、以下の形式に記載。

@echo off
echo === アプリのインストールを開始します ===

winget install -e --id Google.Chrome
winget install -e --id Microsoft.VisualStudioCode
winget install -e --id 7zip.7zip
winget install -e --id Git.Git
winget install -e --id Python.Python.3

echo === インストール完了! ===
pause

③新PCでbatファイルを管理者として実行

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?