*** PowerShell Profiles

				
					$PROFILE
Test-Path -Path $PROFILE
New-Item -Type File -Path $PROFILE -Force
notepad $PROFILE
				
			

put in the notepad someting like that:

				
					Import-Module ActiveDirectory
Write-Output "Welcome Zachi"
Set-PSReadLineOption -Colors @{"String"="#FFA500"}
				
			

*** Check-RunAsAdministrator

				
					Function Check-RunAsAdministrator()
{
  #Get current user context
  $CurrentUser = New-Object Security.Principal.WindowsPrincipal $([Security.Principal.WindowsIdentity]::GetCurrent())
  
  #Check user is running the script is member of Administrator Group
  if($CurrentUser.IsInRole([Security.Principal.WindowsBuiltinRole]::Administrator))
  {
       Write-host "Script is running with Administrator privileges!"
  }
  else
    {
       #Create a new Elevated process to Start PowerShell
       $ElevatedProcess = New-Object System.Diagnostics.ProcessStartInfo "PowerShell";
 
       # Specify the current script path and name as a parameter
       $ElevatedProcess.Arguments = "& '" + $script:MyInvocation.MyCommand.Path + "'"
 
       #Set the Process to elevated
       $ElevatedProcess.Verb = "runas"
 
       #Start the new elevated process
       [System.Diagnostics.Process]::Start($ElevatedProcess)
 
       #Exit from the current, unelevated, process
       Exit
 
    }
}
 
 #Check Script is running with Elevated Privileges
Check-RunAsAdministrator

				
			

*** How do I configure Task Scheduler to run a PowerShell script?

  1.  Go to the Actions tab, click New andselect Start a program from the dropdown menu.
  2. In the Program/script field, input powershell.exe.
  3. In the Add arguments field, enter the following, replacing the argument
    InstallofSoftware.ps1 with the name of your script

Application: powershell.exe

Parameters: -File C:\Scripts\InstallofSoftware.ps1

Or Parameters: -ExecutionPolicy Bypass C:\Scripts\InstallofSoftware.ps1