create script powershell code example
Example 1: powershell create symlink
new-item -itemtype symboliclink -path <path to location> -name <the name> -value <path to target>
Example 2: powershell create service
New-Service -Name "TestService" -BinaryPathName "C:\WINDOWS\System32\svchost.exe -k netsvcs"