Compare commits

..

2 commits

Author SHA1 Message Date
capntack
5af1cd184e Formatting 2024-08-14 21:03:34 -05:00
capntack
bd69f43aa6 Added recycle bin command 2024-08-14 21:03:28 -05:00
3 changed files with 14 additions and 2 deletions

View file

@ -18,6 +18,16 @@ Be cautious if running these commands while remotely connecting to another compu
<br>
### Clear Recycle Bin for All Users
Run in an elevated Command Prompt:
```
rd /s /q c:\$Recycle.Bin
```
<br>
### SFC & DISM Commands
The following commands will repair/replace corrupted/missing system files, as well as clear up disk space. They must all be ran in an elevated Command Prompt:

View file

@ -14,6 +14,8 @@ Note: unless otherwise stated, replace any variable such as `$ComputerName` with
(Get-CimInstance -Class Win32_ComputerSystemProduct -ComputerName $ComputerName).UUID
```
<br>
### Remotely Fetch a (Partial) Installed Program List for $ComputerName
```powershell