FaxCore eV6 services removal PowerShell script, which removes:
fxc6.dispatchagent
fxc6.faxagent
fxc6.renderagent
fxc6.filegateway
fxc6.reportAPI
fxc6.servicesAPI
fxc6.smtpgatewayagent
***Important: How to run it safely
Because this script is stopping core application services, modifying the registry, deleting IIS websites, and permanently removing a directory (Remove-Item -Recurse -Force $FCPath), you need to follow these steps:
1. Run as Administrator: Search for PowerShell in your Start Menu, right-click it, and select Run as Administrator. If you don't, the script won't have the permissions required to stop services or delete system files.
2. Execution Policy: If you saved this code into a file (e.g., uninstall_faxcore.ps1), Windows might block it by default. You can bypass this restriction by running this command in PowerShell first:
PowerShell
Set-ExecutionPolicy Bypass -Scope Process
3. Execute: You can then run your script by typing its path (e.g., .\uninstall_faxcore.ps1). Alternatively, you can open the PowerShell ISE (Integrated Scripting Environment), paste the code there, and hit F5 to run it.
⚠️ Warning: This script is a total uninstallation/wipe script for FaxCore eV6. Make sure you truly want to delete all FaxCore files and IIS configurations!