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?

More than 1 year has passed since last update.

アプリを一括でダウンロードする方法(windows)

Last updated at Posted at 2022-01-02

みなさんは複数のアプリをWindowsで
ダウンロードしたくなったときはありませんか。

本日はバッチファイルを用いて複数アプリをダウンロードする方法を紹介します。

このサイトを参考に作成しました。

[準備]
appinstaller.bat : ファイルをインストールするためのバッチファイル
requirements.txt : インストールしたいアプリの一覧
この二つのファイルを同じ階層に作成しておく。
(batファイルにパスを通しておくと、使いまわししやすくなる)

[方法]
1.下記のコードをバッチファイル(appinstaller.bat)として登録する
2.requirements.txtを作成し、インストールしたいアプリを箇条書きに書き込む
3.appinstaller.batを実行すると、インストールが始まる

appinstaller.bat
@echo off
for /f %%a in (requirements.txt) do (
  winget install %%a 
)
requirements.txt
twitter
facebook
instagram

この方法でダウンロードすると、下のように三つのアプリをインストールすることができました。
image.png

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?