Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

powershell credential object

# Define clear text string for username and password
[string]$userName = 'MyUserName'
[string]$userPassword = 'MySuperSecurePassword'

# Convert to SecureString
[securestring]$secStringPassword = ConvertTo-SecureString $userPassword -AsPlainText -Force
Comment

powershell credential object

[pscredential]$credObject = New-Object System.Management.Automation.PSCredential ($userName, $secStringPassword)
Comment

PREVIOUS NEXT
Code Example
Shell :: offline heic to jpg converter on linux 
Shell :: how to change permissions on a file in linux 
Shell :: upload folder to gitlab 
Shell :: infinite loop bash 
Shell :: flutter web setup 
Shell :: top git commands 
Shell :: ec2 download file 
Shell :: how to check if a commit is in a branch 
Shell :: how to run deb file 
Shell :: update git config username and email 
Shell :: how to install teamspeak server arch linux 
Shell :: sudo apt install ubuntu-desktop ? 
Shell :: Failed at the sharp@0.16.2 install script 
Shell :: give permission to user in ubuntu 
Shell :: mix ecto.migrate 
Shell :: install plasma kde manjaro 
Shell :: how to update discord on ubuntu 
Shell :: nvm change node version 
Shell :: github start ssh agent 
Shell :: how to see how big a file is ubuntu terminal 
Shell :: install neo4j latest version ubuntu 
Shell :: brew install golang-migrate 
Shell :: brew install jenv 
Shell :: install gatsby typography 
Shell :: stop tracking a file git 
Shell :: install bootstrap scss 
Shell :: git set origin 
Shell :: How to install npm in centos 
Shell :: install playstore anbox 
Shell :: git unadd all files 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =