You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@cecconae thanks for opening the issue. We are looking into this. I'm guessing based on the limited information that you are running the falcon_windows_install.ps1 script? Just out of curiosity, why not use the falcon_windows_uninstall.ps1 script? At some point we plan on removing this functionality from the install script.
For now, we'll fix this if block in an upcoming PR.
This line :
if (not (Test-Path -Path $UninstallerPath)) {
Should be :
if (-not (Test-Path -Path $UninstallerPath)) {
The text was updated successfully, but these errors were encountered: