-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
bf3469d
commit 2f99118
Showing
1 changed file
with
26 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,26 @@ | ||
# エラーが発生した時点で処理を中断する | ||
$ErrorActionPreference = 'Stop' | ||
|
||
function main { | ||
# インストールするアプリケーションのハッシュテーブルを定義 | ||
$APPS = @( | ||
'XPDP32QDDFL4PK' # CLIP STUDIO PAINT | ||
'9PGCV4V3BK4W' # DevToys | ||
'9P1TBXR6QDCX' # HyperX NGENUITY | ||
) | ||
|
||
# winget のソースを更新 | ||
winget source update | ||
|
||
# Microsoft Store からインストール | ||
# -s : ソースを指定するオプション | ||
# --accept-source-agreements : ソースの使用許諾契約に同意するオプション | ||
# --accept-package-agreements : パッケージの使用許諾契約に同意するオプション | ||
foreach ($app in $APPS) | ||
{ | ||
winget install -s msstore $app --accept-source-agreements --accept-package-agreements | ||
} | ||
} | ||
|
||
main | ||
# エラーが発生した時点で処理を中断する | ||
$ErrorActionPreference = 'Stop' | ||
|
||
function main { | ||
# インストールするアプリケーションのハッシュテーブルを定義 | ||
$APPS = @( | ||
'9NSBB9XTJW86' # A5:SQL Mk-2 | ||
'XPDP32QDDFL4PK' # CLIP STUDIO PAINT | ||
'9PGCV4V3BK4W' # DevToys | ||
'9P1TBXR6QDCX' # HyperX NGENUITY | ||
) | ||
|
||
# winget のソースを更新 | ||
winget source update | ||
|
||
# Microsoft Store からインストール | ||
# -s : ソースを指定するオプション | ||
# --accept-source-agreements : ソースの使用許諾契約に同意するオプション | ||
# --accept-package-agreements : パッケージの使用許諾契約に同意するオプション | ||
foreach ($app in $APPS) | ||
{ | ||
winget install -s msstore $app --accept-source-agreements --accept-package-agreements | ||
} | ||
} | ||
|
||
main |