DataNow: Install Tips
Couple of quick things to think about if you are installing DataNow.
- The default initial admin username is "appliance".
- It doesn't support chrome (which you will find out if you try to import a certificate) during config.
Couple of quick things to think about if you are installing DataNow.
Retrieving and setting Environment variables in Powershell.
Get:
.\ Get-ChildItem Env:
$Env:Temp
Set:
Process Level:
$Env:TEMP = "C:\Windows\Temp"
User/Machine Level:
[Environment]::SetEnvironmentVariable("Temp", "Test value.", "User")
Environment]::SetEnvironmentVariable("Temp", "Test value.", "Machine")
Delete:
[Environment]::SetEnvironmentVariable("Temp", $null, "User")