AWSCLIでAmazon公式の日本語版WindowsServerAMIの情報を取得する

いつも日本語版AMIを探し回るのでメモ 方法 フィルター部分のOSのバージョン(年)を変えれば対象バージョンの最新のAMIが取得できる cmd aws ec2 describe-images --region...

2022-06-05T16:23:00+09:00 · 1 分 · Szk302

WindowsにPowerShellでサクラエディタをサイレントインストールする

chocolateyやwingetが使用禁止のためpowershellでインストールする install_sakura.ps1 $INSTALLER_FILE_NAME = "sakura_installer.exe"; $INSTALLER_ZIP_FILE_NAME = "sakura_installer.zip" $INSTALLER_URL = "https://github.com/sakura-editor/sakura/releases/download/v2.4.1/sakura-tag-v2.4.1-build2849-ee8234f-Win32-Release-Installer.zip" $current_dir_path = $PSScriptRoot; $tmp_dir_path = "$env:TEMP/" + (Get-Date).ToString("yyyyMMdd_HHmmssfff"); New-Item "${tmp_dir_path}" -ItemType Directory Invoke-WebRequest "${INSTALLER_URL}" -OutFile ${tmp_dir_path}/${INSTALLER_ZIP_FILE_NAME};...

2022-06-05T09:07:00+09:00 · 1 分 · Szk302

WindowsにPowerShellでVSCodeをサイレントインストールする

chocolateyやwingetが使用禁止のためpowershellでインストールする install_vscode.ps1 $INSTALLER_FILE_NAME = "vscode_installer.exe"; $INSTALLER_VERSION = "latest"; $current_dir_path = $PSScriptRoot; $tmp_dir_path = "$env:TEMP/" + (Get-Date).ToString("yyyyMMdd_HHmmssfff"); $installer_file_path = "${tmp_dir_path}/${INSTALLER_FILE_NAME}" New-Item -ItemType Directory ${tmp_dir_path}; Invoke-WebRequest "https://update.code.visualstudio.com/${INSTALLER_VERSION}/win32-x64/stable" -OutFile ${installer_file_path};...

2022-06-05T08:49:00+09:00 · 1 分 · Szk302