This commit is contained in:
Michael H.G. Schmidt 2023-01-01 17:49:33 +01:00
parent a66fb933ef
commit dd1817170a
3 changed files with 18 additions and 0 deletions

View File

@ -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

4
tools/list-apps.cmd Normal file
View File

@ -0,0 +1,4 @@
@echo off
powershell -command "Get-AppxPackage | Select Name, PackageFullName, Architecture |Format-Table -AutoSize"

12
tools/remove-apps.cmd Normal file
View File

@ -0,0 +1,12 @@
@echo off
IF %1.==. GOTO USAGE
powershell -command "Get-AppxPackage -AllUsers *%1* | Remove-AppxPackage"
GOTO END
:USAGE
echo "usage: %0 <Packagename>"
:END