Sadiq_to222 Posted December 4, 2022 Posted December 4, 2022 Hi guys, I am wanting to use a script that sends a simple message notification saying Imaging has completed on computer name. But only shows this message if a file exists in the C drive. Is this possible? Thanks
mjhardisty Posted January 12, 2023 Posted January 12, 2023 What are you using to image? SCCM? Could a PowerShell script be written at the end of the task sequence?
clareq Posted January 18, 2023 Posted January 18, 2023 Write the file to a folder on a server, then use FSRM to fire out an email. You should be able to script the file to include the station name:$PCFileName = "ComputerName.txt" $PCName = $env:COMPUTERNAME $PCName | Out-File -FilePath $PCFileName Write-Host
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now