Change Windows 8.1 Network Profile From Registry Public to Private or vice versa
When you face problems to change your network profile like
"find devices and content on windows 8.1 is missing"
"8.1 change network profile from public to private"
Or Other things like that
You can easily change this setting using registry.
Run regedit.exe as administrator
navigate to path HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\NetworkList\Profiles
Find you desired network profile from subfolder (There is a GUID For Each Network profile Like {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx} you need check the ProfileName key)
change the Category sub key to 1 for private and 0 for public
Babak
#Windows #Windows81 #Windows8.1 #Registry #regedit #Public #Private #Network Profile #Network #Profile #Windows 8.1
2/26/2015 6:11:07 PM
View Internet Explorer 11 Cookies Using Powershell With simple script:
you can run the script below view your cookies without need to run applications so you'll be sure about malware and viruses in application.
soon I'll create the cookie manager script
Tested on Windows 8.1 with IE11
dir "$([Environment]::GetFolderPath("Cookies"))\low" | %{
$str=(cat $_.fullname);
$q=New-Object "System.Collections.Generic.Queue[string]"
$str|%{$q.Enqueue($_)}
while($q.Count -gt 0 ){
New-Object psobject -Property (@{
Name=$q.Dequeue();
Value=$q.Dequeue();
Domain=$q.Dequeue();
Flags=$q.Dequeue();
Expire= [System.DateTime]::FromFileTime([long]$q.Dequeue()+[long]$q.Dequeue()*[math]::pow(2,32)) ;
Creation= [System.DateTime]::FromFileTime([long]$q.Dequeue()+[long]$q.Dequeue()*[math]::pow(2,32)) ;
Delim=$q.Dequeue();
Filename=$_.Name;
}
)
}
} | Out-GridView
Babak
#Powershell #File #safe #Script #Windows #IE #IE11 #InternetExplorer #Source #Cookie #Cookies #View Cookies #GridView #Parse #Parse Cookie #Parse Cookie Files #Browse #free #Generic #Collections #Queue #GenericQueue
7/5/2015 8:48:50 AM