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?

スタートアップフォルダを開くバッチ【Windows】

Posted at

1.スタートアップフォルダ

C:\Users\[ユーザ名]\AppData\Local\Microsoft\WindowsApps

2.スタートアップフォルダを開くバッチ

スタートアップフォルダに下記のバッチを配置する。
Windows + R で実行できるようになる。
ファイル名:[ファイル名].bat

バッチファイルの中身

my.bat
rem スタートアップフォルダを開く
start explorer "C:\Users\[ユーザ名]\AppData\Local\Microsoft\WindowsApps"
  • remはコメント
  • start explorerで指定フォルダを開く
  • うまく実行できない場合はファイルの文字コードを確認する(フォルダ名に日本語がある場合はANSIで保存した方がいいかも)
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?