TortoiseGit auto log-in at SourceForge can be achieved through key authentication through Putty.
- The first step is to create a key set go to the putty section from the link below
- https://sourceforge.net/apps/trac/sourceforge/wiki/SSH%20keys
- Now associate the public SSH key with your SourceForge account
- https://sourceforge.net/account/ssh
- Finally you need to configure Putty to know about your private key such that plink.exe can use it when authentication is done.
- Open putty and load the default settings from the “Session” tab
- Navigate to “Connection->SSH->Auth”
- Specify the path to your private key in “Private key file for authentication:”
- Go back to the “Session” tab and save the changes to “Default Sessions”
- Now you are done.
Other links:
https://sourceforge.net/apps/trac/sourceforge/wiki/Git
http://code.google.com/p/tortoisegit/wiki/UsingPuTTY
This nice small tool for windows 7 can do the job. It creates a new access point like a normal router which can be used by any wifi device. The tool also allows sharing through a wifi access point while it self is connected to a wifi router.
http://www.connectify.me/
If you can’t delete a file in windows because it is locked this tool can help you unlock it: Unlocker. Link
To make a symbolic link in Windows 7 use the “mklink” command.
Creates a symbolic link.
MKLINK [[/D] | [/H] | [/J]] Link Target
/D Creates a directory symbolic link. Default is a file symbolic link.
/H Creates a hard link instead of a symbolic link.
/J Creates a Directory Junction.
Link specifies the new symbolic link name.
Target specifies the path (relative or absolute) that the new link refers to.
An example is given at this site using-symlinks-in-windows-vista
If you cannot even start Messenger without getting the “Stopped working” message box try to reset the settings in regedit:
HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger
Delete the value of the keys:
- AppCompatCanary
- AppSettings
This should make messenger reset the values and start up normally.
Microsoft suggests to do this as well:
link
Delete key UTL type REG_SZ with your email in: HKEY_CURRENT_USER\Software\Microsoft\MSNMessenger\PerPassportSettings\<Hash Number>
After sign in remember to change your display image.
To avoid Monitor problems use the following driver:
http://www-307.ibm.com/pc/support/site.wss/document.do?sitestyle=lenovo&lndocid=MIGR-62923
To speed up the different .Net application from Lenovo the online verification can be turned of for the individual applications:
By saving this as the application .config
<?xml version="1.0" encoding="utf-8"?>
<?configuration>
<?runtime>
<?generatePublisherEvidence enabled="false"/>
<?/runtime>
<?/configuration>
http://www-307.ibm.com/pc/support/site.wss/document.do?lndocid=MIGR-73758
Windows has a command line interface for the wireless profiles, here are a few commands which can be usefulle:
- netsh wlan show profiles (show all profiles)
- netsh wlan export profile name=”NetworknetForFree” folder=C:\
- If the profile name is left out all profiles are exported
- netsh wlan add profile filename=”c:\Wireless Network Connection-NetworknetForFree.xml” user=all
Read the hole post here