Blog Archives
Could not load type System.ServiceModel.Activation.HttpModule’ from assembly ‘System.ServiceModel, Version=3.0.0.0, Culture=neutral, PublicKeyToken=
If you already have .Net 4.0 installed and install a program that brings in an earlier version of .Net, or manually install an earlier version of .Net afterwards, you may get an exception page that matches the title of this article.
This is a simple fix, outlined in detail in MSDN article referenced at the bottom.
Navigate to:
%windir%\Microsoft.NET\Framework\v4.0.30319 %windir%\Microsoft.NET\Framework64\v4.0.30319 (on a 64-bit computer)
Run:
aspnet_regiis.exe /iru
That’s it!
ubuntu lts 12 xrdp rdp setup on Amazon Cloud AWS(12.04.3 precise pangolin)
Consolidated from multiple sources to exclude erroneous steps.
Tested on Amazon Web Services fresh Ubuntu LTS 12.04.3 instance.
Decided upon ubuntu vs centOS simply to avoid having to compile xrdp and manage dependencies manually. Chose 3rd party linux over Amazon AMI in this case for benefit of included repos, use cases and support in their respective communities (ubuntuforums, etc), as well as not having to compile xrdp in Amazon AMI.
sudo useradd -m {name} passwd {name} #you may want to consider setting a root passwd in case you mess up sudoers. if you make a mistake with sudoers terminate your instance and relaunch 🙂 ... or you could mount the HD with another system if it's unencrypted and modify sudoers passwd root #edit /etc/sudoers.d and add your new user {name} ALL=(ALL) ALL #edit sshd /etc/ssh/sshd_config disable root login and allow password authentication (if you like) service ssh restart #http://www.liberiangeek.net/2012/05/connect-to-ubuntu-12-04-precise-pangolin-via-windows-remote-desktop/ sudo apt-get install xrdp sudo apt-get install gnome-session-fallback #two options, 2d unity no longer available, previously echo "gnome-session --session=ubuntu-2d" > ~/.xsession #http://askubuntu.com/questions/247501/i-get-failed-to-load-session-ubuntu-2d-when-using-xrdp echo gnome-session --session=gnome-fallback > ~/.xsession #make sure your user has permission to this file if you have to create it with sudo etc chown {name}:{name} .xsession #http://www.filiwiese.com/installing-gnome-on-ubuntu-12-04-precise-pangolin/ sudo add-apt-repository ppa:gnome3-team/gnome3 sudo apt-get update sudo apt-get install gnome-shell #http://askubuntu.com/questions/251041/how-to-install-lightdm-set-defaults sudo apt-get install lightdm #http://askubuntu.com/questions/71126/how-do-i-set-the-gnome-classic-login-to-be-the-default-with-autologin sudo /usr/lib/lightdm/lightdm-set-defaults -s gnome-fallback
Don’t forget AWS Firewall:
22 (SSH) your ip/32
C# Create a Windows Installer Class Custom Action bootstrap DLL in .Net
The standard windows installer project included with Visual Studio right out of the box is great in many deployment scenarios.
For more advanced needs, organizations and developers usually defer to 3rd party solutions, such as InstallShield, Wise, wix or NSIS (NullSoft).
These solutions are all very well tested and have minimal learning curve in a lot of cases. However, if you are tight on budget or simply looking for the experience and full customization, you can also create your own custom action installer class in Visual Studio.
Simply create a new DLL project included in the same solution as your windows installer project. From the Windows Installer Project go to “File System” and in your Application Folder add “Project Output” and select your new DLL. Now go to the “custom actions” tab and under install and/or uninstall right click and “Add Custom Action” then select the output under Application Folder. That’s it!
Make sure the class for your DLL has “RunInstaller” attributes and looks similar to the snippet below. You may also want to do some light reading on the “CustomActionData” property to see if there are any variables you may need such as “ProductCode”.
To change the custom action data property, from the custom action tab simply select your DLL output after adding it, and expand the Visual Studio Properties tab on the side.
using System; using System.Collections; using System.Collections.Generic; using System.ComponentModel; using System.Configuration.Install; using System.Diagnostics; using System.IO; using System.Reflection; using System.Runtime.InteropServices; namespace MSIBootstrap { [RunInstaller(true)] public partial class InstallHelper : Installer { public static string InstallTitle = "Discount Notes"; //used by install/uninstall to get window handle public InstallHelper() { InitializeComponent(); } public override void Install(System.Collections.IDictionary stateSaver) { try { //your custom code base.Install(stateSaver); } catch (Exception ex) { throw new InstallException(ex.ToString()); } } public override void Uninstall(System.Collections.IDictionary stateSaver) { //mimic same try/catch design pattern if you like base.Uninstall; } }
With this approach, you are essentially using the standard windows installer project to bootstrap your custom action DLL.
This is very powerful, and allows you to define your own code logic and conditions as well as custom interfaces and forms designed directly from within Visual Studio.
References
InstallShield, http://www.flexerasoftware.com/products/installshield.htm
Wise installer, http://www.wise.com/Products/Installations/WiseInstallerEvaluations.aspx
wix installer, http://wix.sourceforge.net/
Nullsoft NSIS, http://nsis.sourceforge.net/Download
Wikipedia (bootstrapping), http://en.wikipedia.org/wiki/Bootstrapping_%28computing%29
devx.com, http://www.devx.com/dotnet/Article/20849/1954
PCReview.co.uk, http://www.pcreview.co.uk/forums/install-project-custom-action-failure-t2612207.html
codefounders.com (persisting savedState), http://www.codefounders.com/community/blogs/davidg/archive/2007/06/27/persisting-state-in-a-windows-installer-managed-custom-action.aspx
MSDN, “CustomActionData”, http://msdn.microsoft.com/en-us/library/2w2fhwzz(v=vs.80).aspx
Create an Uninstall Shortcut for Windows Installer in C#
When utilizing the windows installer project type bundled with Visual Studio I was very surprised to find there was no simple functionality to add an uninstall shortcut.
Instead, there are a few workarounds, some better than others but overall going to have to get your hands dirty to make this one work.
Option 1 – Batch File
Create an uninstall batch file and add a shortcut which points to the batch.
Only downside of this solution, which is actually the simplest, is an ugly little bugger we all know as the DOS window pops up when you execute the batch.
(courtesy of tech.chitgoks.com)
@echo off msiexec /x {xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx}
Option 2 – VBS File
No code example for this option since I didn’t even consider trying this one personally, but this would be to create the equivalent of the code above using WshShell in vbscript (which is actually a similar end result as the code in option 3).
The .vbs file would execute cleanly without a DOS prompt, but my experience with .vbs files has found that they are not AntiVirus friendly and don’t always port OS’es cleanly either. Certain API calls slightly change over time and can break syntax, and you never know if John Doe’s newest antivirus update will flag your .vbs file and prevent it from executing.
Option 3 – Roll up those sleeves
Create a separate app which calls msiexec either by instantiating a hidden cmd.exe process window, or calling it directly also using process object. Then add this separate app to your deployment project solution and create a shortcut in the installer which points to the primary output of your separate app project.
Using this method is the most work, but the best end result for the consumer IMO (isn’t that usually how it works? :P). If you wanted, you could even create your own uninstall process and run msiexec in “unattended” a.k.a “silent” mode and uninstall your app quietly in the background.
(courtesy of endofstream.com)
using System.Diagnostics; //namespace containing process RD public partial class App : Application { void Application_Startup(object sender,StartupEventArgs e) { for(int i = 0;i != e.Args.Length;++i) { if(e.Args[i].Split('=')[0].ToLower() == "/u") { string guid = e.Args[i].Split('=')[1]; string path = Environment.GetFolderPath(Environment.SpecialFolder.System); ProcessStartInfo uninstallProcess = new ProcessStartInfo(path+"\\msiexec.exe","/x "+guid); Process.Start(uninstallProcess); System.Windows.Application.Current.Shutdown(); } } } }
Keep in mind in all of these scenarios, the application guid is necessary to pass as a parameter to msiexec. To pass this variable you will need to specify the productcode as a parameter in custom action data.
Such as:
CustomActionData => /productcode = [ProductCode]
I believe [ProductCode] may also be case sensitive, as I had originally specified “PRODUCTCODE” in one of my installers but this did not seem to pass through..
However…
If you’re still reading by this far (and yes I tried to blow up however to draw your eyes), keep in mind your uninstall executable or batch is calling msiexec, not the other way around, so “ProductCode” is not yet part of the mix.
I’ve yet to find the cleanest solution to this final issue, but overall my thoughts would be to pass product code through to a different separate application added to your deployment project solution as part of the install process, and have this application either store the product code in a generic location such as:
Environment.SpecialFolders.ApplicationData
…or, still using your “install helper” application, store it somewhere in the application directory in program files created by the installer. Essentially the same thing as application data, just leaves less chance of any traces of your program being left behind on uninstall.
Enjoy. 😉
References
http://tech.chitgoks.com/2009/02/06/visual-studio-create-an-uninstaller-shortcut-in-your-installer-wizard/
http://endofstream.com/creating-uninstaller-in-a-visual-studio-project/
Windows Installer (Relevant links for Custom Actions), http://msdn.microsoft.com/en-us/library/aa368066(v=vs.85).aspx, http://msdn.microsoft.com/en-us/library/2w2fhwzz%28v=vs.71%29.aspx, http://msdn.microsoft.com/en-us/library/2w2fhwzz%28v=vs.80%29.aspx, http://msdn.microsoft.com/en-us/library/aa368066%28v=VS.85%29.aspx, http://msdn.microsoft.com/en-us/library/aa367457%28VS.85%29.aspx
MSIexec command line options, http://msdn.microsoft.com/en-us/library/aa372024%28v=vs.85%29.aspx
Flexera Software, http://community.flexerasoftware.com/archive/index.php?t-128559.html
Missing MySQL References in PHP
The following can be used for quick LAMP installation and/or if you are missing MySQL references in PHP.
Debian:
sudo apt-get install mysql-server sudo apt-get install apache2 sudo apt-get install php5 sudo apt-get install php5-mysql sudo apt-get install phpmyadmin
Redhat:
sudo -c "yum install mysql-server" sudo -c "yum install apache2" sudo -c "yum install php5" sudo -c "yum install php5-mysql" sudo -c "yum install phpmyadmin"