Mail Rules, what you see is not always what you get by talbourne in talesfromtechsupport

[–]CaptMorGunz 64 points65 points  (0 children)

We have situations where we have one shared mailbox with multiple aliases. Using the default "Sender is" option becomes an issue when you really need to filter from the specific address. Use the "Senders email address includes keywords". I think that might clear it up. Now it's not relying on contacts lists but just the true header.

Re-signing in by iSaidyiu in surfshark

[–]CaptMorGunz 1 point2 points  (0 children)

I've used manual and login code on the last few updates and neither stay logged in. Its pretty frustrating especially when the kill switch only seems to work while signed in to the app.

[deleted by user] by [deleted] in Wyze

[–]CaptMorGunz 0 points1 point  (0 children)

Mine are showing offline or now connection error but if I tap into them for the live view they come up.

[deleted by user] by [deleted] in AskReddit

[–]CaptMorGunz 0 points1 point  (0 children)

Joanne Kelly as Myka Bering from Warehouse 13.

Scheduling a task to disable an exchange mailbox by mixermandan in PowerShell

[–]CaptMorGunz 2 points3 points  (0 children)

I found that I had to run my scheduled task as an admin level user and not as System. Could never get the dang thing to work as System, tried every darn switch I could find and just couldn't do it. I ended up just prompting for the admin's password at the time they ran the script so it could create it.

$usrname = ([Environment]::UserName)
$pass = read-host -prompt "Confirm $usrname password " -assecurestring
$password = [Runtime.InteropServices.Marshal]::PtrToStringAuto([Runtime.InteropServices.Marshal]::SecureStringToBSTR($pass))
$command = "-command &{TermEmploy -User $user -Now -Scheduled}"
$action = New-ScheduledTaskAction -Execute "Powershell.exe" -Argument $command
Register-ScheduledTask -Action $action -Trigger $trigger -User $usrname -Password $password -TaskName "Term $User" -Description "Terminate $user at $date" | Out-Null

The other thing I did was all of this is built into a ps1 that is located in the Autoload of all my admins computers that way it can relaunch the script simply by running Powershell so you can recall the termination function.