Author: Andreas Plahn
Reconnect a network share with credentials on Windows 8 login
Such as the WD MyCloud network disk…
Create a .bat file and enter this:
net use Z: \\192.168.0.2\Document mysecretpassword /user:MyUserName /persistent:yes
Replace text in bold.
Add a shortcut to the bat file to the Startup folder:
C:\Users\[MyUserName]\AppData\Roaming\Microsoft\Windows\Start Menu\Programs\Startup
Set the shortcut to run in “minimized window” to avoid showing the window.
Technet info for NET command:
http://technet.microsoft.com/en-us/library/bb490717.aspx
Azure Web Sites – Building a Node.js and MongoDB Web Service
Responsive Web Design Testing Tool
dotnetConf 2014 | Channel 9
aspConf – The Virtual ASP.NET Conference
dotnetConf – The .NET Community Virtual Conference
Angry IP Scanner
Angry IP Scanner (or simply ipscan) is an open-source and cross-platform network scanner designed to be fast and simple to use. It scans IP addresses and ports as well as has many other features.
EPiServer workflows in EPiServer CMS – EPiServer CMS note
Search on EPiWiki.se
via EPiServer workflows in EPiServer CMS – EPiServer CMS note.
EPiServer Commerce Cache handling
Just a snippet from my Certification studies:
//Commerce Cache handling
//cache invalidation time is configured in ecf.[objecttype].config
//e.g. ecf.catalog.config element
CatalogCache.Clear(); //clears the entire catalog cache
CatalogCache.Remove(“entrykey”); //invalidate a specific entry
CustomersCache.Clear(); //clear all customers cache
MarketingCache.Clear();
OrderCache.Clear();
SecurityCache.Clear();