Search found 6 matches

by smurphy0822
Tue Dec 20, 2016 3:27 pm
Forum: VersionRecall
Topic: Checking script versions not working. Nor is compair
Replies: 2
Views: 12444

Checking script versions not working. Nor is compair

Product, version and build: VersionRecall Version 1.5.136 Version of product: 32bit Operating system: Windows 10 64 bit OS: 64 bit When I open VersionRecall and attempt to check script versions or compare scripts, I get the attached error. "The VersionRecall try application is currently updatin...
by smurphy0822
Tue Sep 22, 2015 10:59 am
Forum: PowerShell GUIs
Topic: Need help displaying GUI progress
Replies: 1
Views: 1985

Need help displaying GUI progress

Need help displaying GUI progress I have created a script that remotely connects to AD, Exchange and Lync. You are then able to copy a user template, create a new account, create an exchange mailbox and create a new Lync sip account all in one step. The problem is that when help desk staff launch th...
by smurphy0822
Wed Mar 04, 2015 10:59 am
Forum: PowerShell GUIs
Topic: Email field error
Replies: 5
Views: 2549

Re: Email field error

Here is the code Function SendUnlockEmail([string]$x, [string]$y, [int]$z=0, [string]$smtpServer) { if ($z -gt 0) #you did input a ticket #. Send email to SpiceWorks helpdesk { $to = "helpdesk@YourCompany" $subject = "RE: [Ticket #$z]" } $from = $y $body = $user.cn + ", User...
by smurphy0822
Wed Mar 04, 2015 8:56 am
Forum: PowerShell GUIs
Topic: Email field error
Replies: 5
Views: 2549

Email field error

I have created a GUI with a textbox where our help desk will be able to included a help desk ticket number, which will then update the ticket. For this to work correctly, the text needs to be sent in the below format RE: [Ticket #XXXXX] I have attempted several time to get this to work with no luck....
by smurphy0822
Wed Mar 04, 2015 7:32 am
Forum: PowerShell
Topic: Recording PowerShell Script Activity to Log File
Replies: 4
Views: 2964

Re: Recording PowerShell Script Activity to Log File

Thank you for the info. I ended up using and setting up Francois-Xavier's Active Directory Group Membership Change Monitor script. I created a list of AD Groups that I wanted to monitor. I then created an Exchange mailbox where I am having the changes sent to. It is working great so far.
by smurphy0822
Sun Mar 01, 2015 3:55 pm
Forum: PowerShell
Topic: Recording PowerShell Script Activity to Log File
Replies: 4
Views: 2964

Recording PowerShell Script Activity to Log File

I am trying to figure out how to records changes that a PowerShell scripts makes to an ADUser account. I have a script that disables a user’s account in AD, and then deletes the user from all groups they are a member of. Is there a way to record or log what groups the script is deleting the user fro...