Hi,
powershell can set,edit or delete environment variables as well as cmd.exe command line interpreter.
Continue reading Windows: Set or edit environment variable from powershell
Somthing about Powershell, VB Script, C#, VB.NET
Hi,
powershell can set,edit or delete environment variables as well as cmd.exe command line interpreter.
Continue reading Windows: Set or edit environment variable from powershell
Hi,
.Net and therefore the powershell has the ability to define a secure string. This means that the string is immediately deleted from memory if it is no longer needed.
Continue reading Powershell: Convert a string into a securestring and back to plaintext
Hi,
to get the timetable, and the last changes of these, of my daughters school class I have to logon to the schools website and get the information there.
Continue reading cURL: Login and get a website protected by a php session
Hi,
to create a GUID in powershell for the use in your own scripts call the static function NewGuid() from the system.Guid class.
PS D:\> [system.Guid]::NewGuid() f3f8591a-c1d6-4d82-bec2-d3dac2c1fee5
Michael
Hi,
if you want to create XML files with powershell which can be used on UNIX/Linux systems you need to write an own save function. Ths save() methode of the System.XML.XMLDocument class can only write Windows style XML files with Carriage return/New line endings.
Continue reading Powershell: Write XML files with UNIX line endings