Hey guys,
First time Adaxes user, and let me say, we absolutely love the product! Quick question though....
As a part of our account de-provisioning process, we need to delete a few folders from various network shares that belong to users (not technically their AD home drive, but similar concept (eg. terminal server profiles for each user)). I have a simple custom command that runs a simple powershell script using Remove-Item. However, when I run it, it just errors out with 'Cannot invoke this function because the current host does not implement it'. I find this odd, seeing as New-Item commands work just fine. Adaxes is running on a Server08R2 SP1 VM.
My script looks like this:
Remove-Item \\server01\share1$\%username% -Force
The same script with New-Item (to create the folder) works just fine. I can run the exact same code in a regular powershell window with no problem.
Any thoughts? Any alternatives?