Posts tagged with "Note to self"

Office 2007 templates folder

I am always loosing time searching for that information when we get an update of office templates, so I decided to make a ‘note to self’ so that I will not loose anymore time with that.

Start Word 2007 and go on Word Options, then click Advanced, File Locations:

Continue reading

ATI Drivers installation on my HP notebook

Feb 22, 2009

To be able to install the latest version of the ATI Driver I have to use a tool to modify the normal installation package: Mobility DotNET Final1.1.1.0

For some time now I have to run the installation from the command prompt otherwise it crashes, and here is the command:

Continue reading

Giving more memory to Web Performance 3.4 while load testing

Sep 8, 2008

First do not trust their documentation! The launch anywhere (lax) file change doesn’t make it.

Do it by your own, with such a command:

Continue reading

NoteToSelf: aspnet_merge.exe, Team City and Web Deployment for Visual Studio 2008

Mar 1, 2008

I had to modify the Microsoft.WebDeployment.targets file to be able to compile through Team City the Web Deployment 2008 project !

<!-- Changed KEL ExePath="$(FrameworkSDKDir)bin" -->
<Target Name="AspNetMerge" 
        Condition="'$(UseMerge)' == 'true'"
        DependsOnTargets="$(MergeDependsOn)">
  <AspNetMerge
    ExePath="C:\Program Files\Microsoft SDKs\Windows\v6.0A\Bin"
    ApplicationPath="$(TempBuildDir)"
    KeyFile="$(_FullKeyFile)"
    DelaySign="$(DelaySign)"
    Prefix="$(AssemblyPrefixName)"
    SingleAssemblyName="$(SingleAssemblyName)"
    Debug="$(DebugSymbols)"
    Nologo="$(NoLogo)"
    ContentAssemblyName="$(ContentAssemblyName)"
    ErrorStack="$(ErrorStack)"
    RemoveCompiledFiles="$(DeleteAppCodeCompiledFiles)"
    CopyAttributes="$(CopyAssemblyAttributes)"
    AssemblyInfo="$(AssemblyInfoDll)"
    MergeXmlDocs="$(MergeXmlDocs)"
    ErrorLogFile="$(MergeErrorLogFile)"
  />
 
  <CreateItem Include="$(TempBuildDir)**\*.*">
    <Output ItemName="PrecompiledOutput" TaskParameter="Include" />
  </CreateItem>
  </Target>

Continue reading

Page 1 of 3