github-desktop/script/cleanup-windows-certificate.ps1

8 lines
163 B
PowerShell

$scriptPath = split-path -parent $MyInvocation.MyCommand.Definition
$file = "$scriptPath\windows-certificate.pfx"
if ((Test-Path $file)) {
Remove-Item $file
}