Posts

How to Enable Username and Password, and Enable Secret Password on Transport Input SSH on Cisco Router

Login into Router Type the following # enable config# hostname J01S01 config# ip domain-name squirrelsuccess config# crypto key generate rsa config# 768 config# aaa new-mode config# aaa authentication login default enable config# aaa authorization exec default local config# username jamie password Pa$$w0rd config# enable secret password cisco config# line vty 0 4 configline# exec-timeout 2 0 configline# privilege level 15 configline# logging synchronous configline# exec prompt timestamp configline# transport input ssh configline# end # write memory Please bear in mind that this offers no privledge levels, and is just for testing purposes only. Hope it helps someone out there!!

Configuring Windows 7 Remote Assistance

How to configure Windows Remote Assistance within a Domain Environment On the Server 1. Create a new Group Policy called 'Remote Assistance' and link it to a Container called 'Test - Remote Assistance'. 2. Apply the following settings in the 'Remote Assistance' Group Policy within the following section Computer Configuration\Policies\Administrative Templates\System\Remote Assistance; Allow only Vista or Later connections - Enabled Turn on session logging - Enabled [Stored in Documents\Remote Assistance Logs\] Customize Warning Message - Enabled { Please minimize or close any applications that display confidential information before accepting any requests for Remote Assistance.  } Solicited Remote Assistance - Disabled [this prevents requests for Remote Assistance being sent from the client machine] Offer Remote Assistance - Enabled Offer Remote Assistance - Permit remote control of this computer: Allow helpers to remotely control the computer. Offer Rem...

AutoDesk AdminImage Deployment via Batch File

For an automated installation of multiple AutoDesk products using AutoDesk's Admin Image utlity, use the following switch when executing setup.exe (/w). This would then work nicely in a batch file. An example would be; //myserver/autocad/adminimage/setup.exe /w /qb /i //myserver/autocad/adminimage/autocad.ini //myserver/3dsmax/adminimage/setup.exe /w /qb /i //myserver/3dsmax/adminimage/3dsmax.ini pause Hope this helps... Reference: http://wikihelp.autodesk.com/Product_Design_Suite/enu/2012/Help/2000-Installa0/0148-Network_148/0162-Alternat162/0171-Use_Micr171/0173-Create_t173

Ableton activation for all MAC users

To enable Ableton to work for all users complete the following; Login as an administrator, or a root administrator. Authorise Ableton using the administrator account. Open up Terminal and type the following without quotes and replacing the astrixs (*) with the username of the administrator who registered the program and changing the version number to match the one you are installing. "sudo mkdir -p /library/application\ support/ableton/live\ 8.0.1/unlock/" "sudo cp -R /users/*****/library/application\ support/ableton/live\ 8.0.1/unlock/ /library/application\ support/ableton/live\ 8.0.1/unlock/" If you receive an error about permissions, you may need to login as a true admin. Try reading this article and complete the activation again using thataccount. http://support.apple.com/kb/ht1528 Hope this helps. J

Dreamweaver 'Log In User' Server Behaviour not case sensitive

Never found a straight answer to my problem on Uncle Google so I thought I would blog it. When creating a 'Log In User' Server Behaviour (within Dreamweaver), you might notice that when logging in, the case for the password is not case sensitive. In order to make the login page case sensitive for passwords, adjust the following code; MM_loginSQL = MM_loginSQL & " FROM tblLogin WHERE username = ? AND password = ? to MM_loginSQL = MM_loginSQL & " FROM tblLogin WHERE username = ? AND strComp(password, ?,0)=0 It seems difficult to tell above, but the o's are numbers, not letters. Happy logging in!

VB Repeaters and Textboxes

Made your repeaters hidden and then you get an index error within Visual Studio? 1. The repeater needs to be visible to bind data to the textboxes. 2. You cannot extract text from a textbox repeater once the website is running. - The way around this is to copy the contents of the textbox repeater to another textbox object. You can also use validation instead of manually creating validation as textboxes within repeater controls are not visable and the find control code has to be utilized. See code below to extract contents of textbox within repeater. Change name of textbox control to read contents of a button control. rptYourRepeater.Items[0].FindControl("txtYourTextBox")

How to copy NK2 to DAT for Microsoft Office 2010 (AutoComplete)

Before attemping this, ensure Outlook 2010 is closed. This method is only really necessary if you are installing Office 2010 from scratch on a new machine. If you are installing over Office 2007, as far as I am aware the installer will convert the NK2 into a DAT file. 1. Download NK2Edit from http://www.nirsoft.net 2. Open the old Nk2 file (associating the file with NK2 does not work with version v1.12 3. Click Save As, Change the Save as type to "Outlook 2010 AutoComplete .dat file". 4. Navigate to the following directory in the address bar within the Save As Window. %AppData%\Local\Microsoft\Outlook\RoamCache 5. Save over the current Stream_Autocomplete file. 6. Test the AutoComplete feature. Provided with no Warranty.