$targetDir = "C:\Path"
$destinationDir = "\\hostname\path"
if (!(Test-Path $targetDir))
{
Write-Warning "Target path does not exist."
Exit(1)
}
if (!(Test-Path $destinationDir))
{
Write-Warning "Destination path does not exist."
Exit(1)
}
$notification = New-Object -ComObject Wscript.Shell
$lastCreationFile = Get-ChildItem $targetDir -File |
Where-Object { $_.Name -like "*.ps1" } |
Sort-Object -Property CreationTime |
Select-Object -Last 1
$oldFile = Get-ChildItem $destinationDir -File
$oldFile.FullName | Remove-Item -Force
$retVal = $?
if ($retVal)
{
Copy-Item -Path $lastCreationFile.FullName -Destination $destinationDir
$notification.Popup("File $lastCreationFile.Name has been copy.")
}
else
{
$notification.Popup("File $oldFile.Name was not removed.")
}
Invoke-WmiMethod -Class Win32_Process -ComputerName localhost -Name Create -ArgumentList "C:\Windows\System32\msg.exe * Alarm."