The following script will create a file in the senso.cloud directory (if it does not already exist) that disables the senso web filter service (sensowfp). This will take effect once the senso.cloud.service restarts.
if(!(Get-Item "C:\Program Files\Renato\senso.cloud\disablefilter" -ErrorAction SilentlyContinue)){New-Item -path "C:\program files\renato\senso.cloud" -Name "disablefilter" -itemtype file}
This can be applied as a policy to apply automatically.
To restart the senso service from senso itself, the following command can be run (powershell):
sc.exe stop senso.cloud.service;start-sleep -seconds 3;sc.exe start senso.cloud.service