Search
 
SCRIPT & CODE EXAMPLE
 

C

how to login to another user in powershell

$username = 'user'
$password = 'password'

$securePassword = ConvertTo-SecureString $password -AsPlainText -Force
$credential = New-Object System.Management.Automation.PSCredential $username, $securePassword
Start-Process Notepad.exe -Credential $credential
Comment

PREVIOUS NEXT
Code Example
C :: %d in c 
C :: ROUNDING decimal number in C 
C :: scanf string in c 
C :: write a binary file c 
C :: c check if char is an operator 
C :: c read csv 
C :: turn a char into an int in c 
C :: read string with space c 
C :: c modify char array 
C :: how to print sizes of various data types of C 
C :: how to reverse a string in c 
C :: how to read keyboard input in C 
C :: sleep function in c 
C :: try and catch in rust 
C :: search in gz file 
C :: identifier bool is undefined in c 
C :: arrays in c 
C :: how to make a check bigger 
C :: how to get the lowest number on a array in c 
C :: actionbar content color in android 
C :: C strlen implementation 
C :: c language 
C :: c program to find minimum of 5 numbers using conditional operator in c 
C :: c add char to char array 
C :: struct in struct 
C :: size of int in c 
C :: north austin weather 
C :: voide means in c 
C :: como somar em C 
C :: error: argument 1 range [18446744071562067968, 18446744073709551615] exceeds maximum object size 9223372036854775807 [-werror=alloc-size-larger-than=] 
ADD CONTENT
Topic
Content
Source link
Name
7+3 =