AppSense Paul Fulbright AppSense Paul Fulbright

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.

Read More
Code, PowerShell Paul Fulbright Code, PowerShell Paul Fulbright

Initial Response...

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")

Read More