Running a DotNet Framework 2.0 from a network share or an UNC path just plain doesn’t work. You get an error message such as the the one to the right.
I pretty much never thought much of it, because in some mysterious way I never encountered a situation where this might be an actual problem. Well. A couple a weeks ago a customer hit into this problem, and for a reason or another they really needed to run their application (not admodify.net!) from a network share.
Here’s a couple of links on the issue and remedy:
http://support.microsoft.com/kb/320268
http://msdn.microsoft.com/en-us/library/a0ke3k86(VS.71).aspx
However, for the brave one, here’s an example wildcard solution. Run it from a CMD prompt from within C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727
caspol -m -ag 1 -url "file://\\*" FullTrust -exclusive on
Here’s the short
Windows Installer Wrapper Wizard (WIWW) 0.2.0 can create Windows Installer msi wrapper files that will execute commands you specify in a wizard. Its intended use is allowing administrators to execute commands or install software using machine assigned or user published group policies…/
Article here
Backup copy: windows_installer_wrapper_wizard_020
Aside of the NTFS alternate data stream manipulation (aka. blocked content) that can be circumvented by GPO
User ConfigurationAdministrative TemplatesWindows ComponentsAttachment Manager there is the issue with CHM files over the network.
See http://support.microsoft.com/kb/896358
I better just dump this for reference before I forget about the whole thing….
You can check if your home router supports ECN with Micosoft Internet Connectivity Evaluation Tool
Summary below stolen from
http://technet.microsoft.com/en-us/library/bb726965.aspx
Compound TCP
For TCP connections with a large receive window size and a large bandwidth-delay product, Compound TCP (CTCP) in the Next Generation TCP/IP stack aggressively increases the amount of data sent at a time by monitoring the bandwidth-delay product, delay variations, and packet losses. CTCP also ensures that its behavior does not negatively impact other TCP connections. In testing performed internally at Microsoft, large file backup times were reduced by almost half for a 1 Gigabit per second connection with a 50 millisecond round-trip time. Connections with a larger bandwidth-delay product can have even better performance.Receive Window Auto Tuning optimizes receiver-side throughput and CTCP optimizes sender-side throughput. By working together, they can increase link utilization and produce substantial performance gains for large bandwidth-delay product connections.
CTCP is enabled by default for computers running Windows Server 2008 and disabled by default for computers running Windows Vista. You can enable CTCP with the netsh interface tcp set global congestionprovider=ctcp command and disable CTCP with the netsh interface tcp set global congestionprovider=none command.
ECN Support
When a TCP segment is lost, TCP assumes that the segment was lost due to congestion at a router and performs congestion control, which dramatically lowers the TCP sender’s transmission rate. With Explicit Congestion Notification (ECN) support (RFC 3168) on both TCP peers and the routers in the routing infrastructure, routers experiencing congestion mark the packets as they forward them. TCP peers receiving marked packets lower their transmission rate to ease congestion and prevent segment losses. Detecting congestion before packet losses are incurred increases the overall throughput between TCP peers. Windows Server 2008 and Windows Vista support ECN, but it is disabled by default. You can enable ECN support with the netsh interface tcp set global ecncapability=enabled command.
Got tired of the %20 in downloaded files…
With Remote Desktop Connection 6.1 (RDC) some things have changed.
That you now need to use mstsc /admin to connect to the console session is common knowledge….
However, when using .RDP files we used to add “connect to console:i:1″ in the .RDP to connect to the console session, well turns out that this no longer works….
Long stroy short, here’s what you need to do:
Before…
mstsc /console = “connect to console:i:1″ in .RDP file
After…
mstsc /admin = “administrative session:i:1″ in .RPP file
I actually used this on a HP DL360 (with a RAID set) through ILO over a WAN connection. Worked like a charm!

Parted Magic is a ~30mb LiveCD/USB with it’s only purpose being partitioning hard drives. Although GParted and Parted are the main programs, the CD/USB also offers programs like partimage, TestDisk, fdisk, sfdisk, dd, ddrescue, etc…
Read more and download here
Backup copy (//090102) pmagic-3.4.iso.zip
Allrite, so this is the way to implemt forms with
System.Web.Security.ActiveDirectoryMembershipProvider
…and this the way to do it with
System.Web.Security.SqlMembershipProvider (with roles)
…you need to have the membership provider in web.config for central admin
A nice list of troubleshooting tools over at citrx.com
Read more here