Showing posts with label Microsoft. Show all posts
Showing posts with label Microsoft. Show all posts

Tuesday, July 28, 2015

Repairing a Windows 7 installation that won't boot:

1. Insert Windows 7 installation disk, boot from the disk, and choose "Repair Windows" at the bottom left of the second screen

2. Try to run the following command:

sfc /scannow /offbootdir=[DRIVELETTER]:\ /offwindir=[DRIVELETTER]:\windows


------------------------
If you get a message saying "There is a system repair pending which requires reboot to complete", try this command:

cd c:\windows\winsxs
find "pending" /i 

Then:

rename [FILENAME].xml [FILENAME].xml.bak

If you get an error message at any point, run this command (while still in the winsxs folder) and then retry the above rename operation:

icacls * /T /Q /C /RESET

Now repeat step 2 to check for errors.

Saturday, November 24, 2012

BugZilla Resources & Information

Linux Distribution:

Upgrading Virtual Bugzilla Server:

Required Modules for Linux (Ubuntu shown):

  • Required: apache2 mysql-server libappconfig-perl libdate-calc-perl libtemplate-perl libmime-perl build-essential libdatetime-timezone-perl libdatetime-perl libemail-send-perl libemail-mime-perl libemail-mime-modifier-perl libdbi-perl libdbd-mysql-perl libcgi-pm-perl
  • Optional: apache2-mpm-prefork libapache2-mod-perl2 libapache2-mod-perl2-dev libchart-perl libxml-perl libxml-twig-perl perlmagick libgd-graph-perl libtemplate-plugin-gd-perl libsoap-lite-perl libhtml-scrubber-perl libjson-rpc-perl libdaemon-generic-perl libtheschwartz-perl libtest-taint-perl libauthen-radius-perl libfile-slurp-perl libencode-detect-perl libmodule-build-perl
  • Even More Optional: libtemplate-perl-doc bzr

Bugzilla Configuration:

BugZilla Email Configuration:

Security:

SSH/SFTP:

IIS Related:

How-To:

Troubleshooting:

Saturday, April 5, 2008

Required file 'alink.dll with IAlink3' could not be found

After reinstalling Visual Studio and attempting to open and build a new project on my Vista system, I encountered the following error:

"Required file 'alink.dll with IAlink3' could not be found"

So that time may be saved in the future for the next who encounters this error, the following steps will solve this problem:

1. Explore the Visual Studio installation source and go to the
"\WCU\dotNetFramework\dotNetMSP\x86" directory;

2. Install the updates in this order: Windows6.0-KB110806-x86.msu, Windows6.0-KB929300-x86.msu, Windows6.0-kb930264-x86.msu (if the last item is not in the directory as some have noted, it can be downloaded here);

3. Reboot your system and build the affected solution.

It's the little things about software development that make coding a profession only for the patient...