Follow along with the video below to see how to install our site as a web app on your home screen.
Anmerkung: This feature may not be available in some browsers.
PS D:\> $env:SYSTEMROOT
C:\Windows
D:\>echo %SYSTEMROOT%
C:\Windows
#include <stdio.h>
#include <stdlib.h>
int main ()
{
char * pPath;
pPath = getenv ("SYSTEMROOT");
if (pPath!=NULL)
printf ("The current path is: %s",pPath);
return 0;
}
set WshShell = WScript.CreateObject("WScript.Shell")
SystemRoot = "Der Systemordner ist: " & WshShell.ExpandEnvironmentStrings("%Systemroot%") & vbNewLine
ProgrammRoot = "Der Programmordner ist: " & WshShell.ExpandEnvironmentStrings("%ProgramFiles%") & vbNewLine
TempRoot = "Der Tempordner ist: " & WshShell.ExpandEnvironmentStrings("%Temp%") & vbNewLine
UserRoot = "Das User Profil wird unter: " & WshShell.ExpandEnvironmentStrings("%UserProfile%") & " gespeichert"
MsgBox SystemRoot & ProgrammRoot & TempRoot & UserRoot ,, "Systemvariablen..."