tacksupport / Create Guest Mode Edge Shortcut with no Tab Crash Recovery
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | "C:\Program Files (x86)\Microsoft\Edge\Application\msedge.exe" --guest --disable-session-crashed-bubble --no-first-run https://sub.domain.tld |
tacksupport / Open Devices and Printers on Windows 11 via Run
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A} |
tacksupport / Clear Cached Update Payloads and Redownload
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | :: Source: https://windowsforum.com/threads/windows-11-kb5067036-0x800f0983-fixes-and-practical-workarounds.387167/ |
| 2 | |
| 3 | net stop wuauserv |
| 4 | net stop bits |
| 5 | net stop cryptsvc |
| 6 | ren C:\Windows\SoftwareDistribution SoftwareDistribution.old |
| 7 | ren C:\Windows\System32\catroot2 catroot2.old |
| 8 | net start cryptsvc |
| 9 | net start bits |
| 10 | net start wuauserv |
tacksupport / Remotely Fetch Installed Programs
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | # Fill in the computer name below |
| 2 | |
| 3 | $ComputerName = |
| 4 | |
| 5 | Get-WmiObject win32_product -ComputerName $ComputerName | Sort-Object | select Vendor, Name, version |
tacksupport / Remotely Fetch a Computer's UUID
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | # Enter the computer name below |
| 2 | |
| 3 | $ComputerName = |
| 4 | |
| 5 | (Get-CimInstance -Class Win32_ComputerSystemProduct -ComputerName $ComputerName).UUID |
tacksupport / Delete Search Database
0 likes
0 forks
1 files
Last active 6 days ago
| 1 | :: Run in an elevated command prompt |
| 2 | |
| 3 | net stop "Windows Search" |
| 4 | |
| 5 | del %PROGRAMDATA%\Microsoft\Search\Data\Applications\Windows\Windows.db |
| 6 | |
| 7 | net start "Windows Search" |
Newer
Older