script to output results

Ask your PowerShell-related questions, including questions on cmdlet development!
Forum rules
Do not post any licensing information in this forum.

Any code longer than three lines should be added as code using the 'Select Code' dropdown menu or attached as a file.
This topic is 6 years and 7 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked
User avatar
lonwitness
Posts: 1
Last visit: Wed Aug 09, 2017 6:17 am

script to output results

Post by lonwitness »

I've written a script to disable office 365 plans and to export any failures.
Attached is the readout 'test' with a weird message.
Attached is the script and sample csv file.
Attachments
users.csv
(317 Bytes) Downloaded 133 times
Test.txt
(136 Bytes) Downloaded 114 times
newscript2.txt
(1.73 KiB) Downloaded 126 times
User avatar
pdearmen
Posts: 66
Last visit: Mon Mar 11, 2024 1:29 pm

Re: script to output results

Post by pdearmen »

This line here:

Code: Select all

$users| foreach-object {Set-MsolUser -UserPrincipalName $_.O365_UPN -UsageLocation $UsageLocation;Set-MsolUserLicense -
UserPrincipalName $_.O365_UPN -AddLicenses $AccountSkuId -LicenseOptions $licenseoptions} -ErrorAction Stop
Just based on formatting that's probably where you are getting your error. You should do something like

Code: Select all

Set-MsolUser -UserPrincipalName $_.O365_UPN -UsageLocation $UsageLocation; Set-MsolUserLicense `
-UserPrincipalName $_.O365_UPN -AddLicenses $AccountSkuId -LicenseOptions $licenseoptions
Use of the ` acts like a word wrap so you can continue the code onto the second line.
This topic is 6 years and 7 months old and has exceeded the time allowed for comments. Please begin a new topic or use the search feature to find a similar but newer topic.
Locked