From dd1817170a74a031c52ba9657a1d6bdbc04be4c1 Mon Sep 17 00:00:00 2001 From: "Michael H.G. Schmidt" Date: Sun, 1 Jan 2023 17:49:33 +0100 Subject: [PATCH] . --- scripts/unpack-zipfiles.cmd | 2 ++ tools/list-apps.cmd | 4 ++++ tools/remove-apps.cmd | 12 ++++++++++++ 3 files changed, 18 insertions(+) create mode 100644 tools/list-apps.cmd create mode 100644 tools/remove-apps.cmd diff --git a/scripts/unpack-zipfiles.cmd b/scripts/unpack-zipfiles.cmd index 800f026..1ddd14a 100644 --- a/scripts/unpack-zipfiles.cmd +++ b/scripts/unpack-zipfiles.cmd @@ -131,6 +131,8 @@ echo. echo VIM move /Y %T%\vim\vim.exe %TOOLS% rd /S /Q %T%\vim +rem create symbolic link ... +mklink %TOOLS%\vi.exe %TOOLS%\vim.exe 2>nul echo. echo ViveTool diff --git a/tools/list-apps.cmd b/tools/list-apps.cmd new file mode 100644 index 0000000..19b428b --- /dev/null +++ b/tools/list-apps.cmd @@ -0,0 +1,4 @@ +@echo off + +powershell -command "Get-AppxPackage | Select Name, PackageFullName, Architecture |Format-Table -AutoSize" + diff --git a/tools/remove-apps.cmd b/tools/remove-apps.cmd new file mode 100644 index 0000000..76fed51 --- /dev/null +++ b/tools/remove-apps.cmd @@ -0,0 +1,12 @@ +@echo off + +IF %1.==. GOTO USAGE + +powershell -command "Get-AppxPackage -AllUsers *%1* | Remove-AppxPackage" +GOTO END + +:USAGE +echo "usage: %0 " + +:END +