This task should remove the registry key made in the following location
HKCU:\Software\Microsoft\Windows\CurrentVersion\Run
and remove the string value:
com.squirrel.Teams.Teams

Remove Via PowerShell
Remove-ItemProperty -Path HKCU:\Software\Microsoft\Windows\CurrentVersion\Run -Name "com.squirrel.Teams.Teams"
Via Command Prompt
reg delete HKCU:\Software\Microsoft\Windows\CurrentVersion\Run /v "com.squirrel.Teams.Teams" /f
0 Kommentare