Search found 38 matches

by devereux0110
Mon Oct 02, 2017 6:21 am
Forum: PowerShell
Topic: Office 365 - applyigng licenses to user ina group
Replies: 2
Views: 1998

Office 365 - applyigng licenses to user ina group

Really struggling with this one Don't seem to be able to even get a start We have Office 365 and have synced our domain to the Office 365 System along with all users and group memberships, Wehave installed and connected to Office 365 with Azure AD Module for Powershell and are now trying to give all...
by devereux0110
Fri Feb 24, 2017 7:06 am
Forum: PowerShell
Topic: OWA Email Signature
Replies: 3
Views: 2983

Re: OWA Email Signature

Thankyou very much, this worked brill
Much Appreciated,
by devereux0110
Fri Feb 24, 2017 5:18 am
Forum: PowerShell
Topic: OWA Email Signature
Replies: 3
Views: 2983

OWA Email Signature

We have worked out how to add a Signature to a single OWA Account using Variables from the individual users account as Powershell commands below $Signature1 = Get-ADUser username -Properties Name | Select-Object name $JobTitle1 = Get-ADUser username -Properties Description | Select-Object Descriptio...
by devereux0110
Sun Nov 06, 2016 11:45 pm
Forum: VBScript
Topic: VBS Default Printing Failing
Replies: 7
Views: 21874

Re: VBS Default Printing Failing

Hello All - Update It turned out there was nothing wrong with the script, it is an issue with setting a default printer in a Citrix Session. Reverted to using printui.dll to set the default printer instead of the .SetDefaultPrinter option Script below which includes check to make sure default sets a...
by devereux0110
Sun Nov 06, 2016 9:27 am
Forum: VBScript
Topic: VBS Default Printing Failing
Replies: 7
Views: 21874

Re: VBS Default Printing Failing

Set WSHNetwork = CreateObject("WScript.Network") WSHNetwork.SetDefaultPrinter "HP Printer" is basically the script we have not at work at moment but it is the above with the extra line to add the printer first the set it as default. We know the script works as when run as Domain ...
by devereux0110
Sat Nov 05, 2016 1:27 pm
Forum: VBScript
Topic: VBS Default Printing Failing
Replies: 7
Views: 21874

VBS Default Printing Failing

We a basic VBS Script to add a printer and then set it as default. Nothing special about the script and as Domain Admin Works perfectly. However as a non domain admin, the script maps the printer and makes it available to the user for use with no problems but fails to set it as default. What could s...
by devereux0110
Thu Nov 12, 2015 1:48 pm
Forum: VBScript
Topic: Task Scheduler
Replies: 3
Views: 18918

Re: Task Scheduler

Posted here because I thought may be others that have run scripts this way may have had the same issue. The script does work when run manually when logged on, just not when server is logged off and run by task scheduler, thought maybe something needed adding to the script to make it work correctly w...
by devereux0110
Thu Nov 12, 2015 6:21 am
Forum: VBScript
Topic: Task Scheduler
Replies: 3
Views: 18918

Task Scheduler

We have a script which basically reads through a csv files of student usernames and resets the password in AD to default password, the script functions with no problem if I run it manually on the DC and writes to a txt that password is reset for which user and then the CSV file is deleted. The scrip...
by devereux0110
Mon Oct 05, 2015 12:43 pm
Forum: VBScript
Topic: Display Default Printer
Replies: 3
Views: 16813

Re: Display Default Printer

Thanks

Looked everywhere for this but couldn't find anything on the web