tacksupport / Create Guest Mode Edge Shortcut with no Tab Crash Recovery
0 gustos
0 bifurcaciones
1 archivos
Última actividad 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 / Run Disk Cleanup
0 gustos
0 bifurcaciones
1 archivos
Última actividad 6 days ago
| 1 | C:\Windows\System32\cleanmgr.exe /VeryLowDisk/dc |
| 2 | |
| 3 | del %TEMP%\*.* /s /q |
tacksupport / Open Devices and Printers on Windows 11 via Run
0 gustos
0 bifurcaciones
1 archivos
Última actividad 6 days ago
| 1 | shell:::{A8A91A66-3A7D-4424-8D24-04E180695C7A} |
tacksupport / Open Control Panel
0 gustos
0 bifurcaciones
1 archivos
Última actividad 6 days ago
| 1 | %WINDIR%\System32\Control.exe |
tacksupport / Clear Cached Update Payloads and Redownload
0 gustos
0 bifurcaciones
1 archivos
Última actividad 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 / Audit a Teams Group
0 gustos
0 bifurcaciones
1 archivos
Última actividad 6 days ago
| 1 | Connect-ExchangeOnline |
| 2 | # Enter the email address to connect with below |
| 3 | $Email = |
| 4 | $Group = Get-UnifiedGroup -Identity $Email |
| 5 | $GroupId = $Group.ExternalDirectoryObjectId |
| 6 | $Group.ExternalDirectoryObjectId |
| 7 | Remove-Variable Group, GroupId |
| 8 | |
| 9 | Import-Module MicrosoftTeams |
| 10 | Connect-MicrosoftTeams |
tacksupport / Remotely Fetch Installed Programs
0 gustos
0 bifurcaciones
1 archivos
Última actividad 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 gustos
0 bifurcaciones
1 archivos
Última actividad 6 days ago
| 1 | # Enter the computer name below |
| 2 | |
| 3 | $ComputerName = |
| 4 | |
| 5 | (Get-CimInstance -Class Win32_ComputerSystemProduct -ComputerName $ComputerName).UUID |
tacksupport / SFC & DISM commands
0 gustos
0 bifurcaciones
3 archivos
Última actividad 6 days ago
| 1 | :: The following command will repair/replace corrupted/missing system files. Requires an elevated command prompt. |
| 2 | |
| 3 | sfc /scannow |
tacksupport / Delete Search Database
0 gustos
0 bifurcaciones
1 archivos
Última actividad 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" |
Siguiente
Anterior