Advertisement
Guest User

Untitled

a guest
Sep 21st, 2018
2,128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1.  
  2. Add-Type -AssemblyName System.Windows.Forms
  3.  
  4. Function Show_Reminder{
  5.  
  6. [System.Windows.Forms.MessageBox]::Show($Reminder,'1st Reminder','OK','warning')
  7.  
  8. }
  9.  
  10. $runasAlias = [Environment]::UserName
  11.  
  12. $Reminder = Get-Content "C:\Users\$($runasAlias)\RemindMe\Memory\Reminder1.txt"
  13. [DateTime]$Time = Get-Content "C:\Users\$($runasAlias)\RemindMe\Memory\Time1.txt"
  14.  
  15. [DateTime]$Date = Get-Date
  16. [DateTime]$DateTime = $Date.ToString("yyyy-MM-dd hh:mm")
  17.  
  18. Start-Sleep (($Time) - ($DateTime)).TotalSeconds
  19.  
  20. Show_Reminder
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement