Sunday, January 26, 2020

Citrix Netscaler ADC RMA details Replacement


  • Once we get new RMA device serial number get the new license ready it should require citrix portal login details and even for new version OS.
  • Take the backup via winscp nsconfig and via gui
  • Make the active device as stay primary and disable the HA link  to avoid any unnoticed HA issues
  • Remove HA config from active node
  • Login to the CLI username and pass nsroot nsroot
  • Type nsconfig to give IP address and subnet mask and default gate way
  • Type 1 for above step and type 7 to save
  • Save configuaration
  • Reload the node
  • Add route 0.0.0.0 0.0.0.0 default gateway 
  • Enable the data link if no… so we can login via gui
  • Update the license
  • Download the OS from citrix and upgrade to match the other node
  • Disable unused port and enable HA port
  • So HA will get active and sync will happen
  • Sometime under traffic management we need to right-click enable the license there as well.

Saturday, March 29, 2014

How to install Whatsapp in pc simple steps

 To download and Install Whatsapp on PC using BlueStacks

installing bluestack

Step 1: Download BlueStack (free Windows Application)

Download BlueStacks for Windows

Step 2: After Finishing the Download Double Click on Downloaded File, Click Continue, Click Install.

Step 3: Now Download WhatsApp APK File

Downlaod WhatsApp APK

Step 4: After Finishing the Download Double Click on Downloaded WhatsApp APK file.

Step 5: Now whatsApp will install in your PC.

Step 6: Now Open BlueStacks (Click on BlueStacks icon in your Desktop)

Step 7: Now in BlueStacks >> Click on My Apps.

Step 8: Now you’ll see WhatsApp >> Click on it.

Step 9: Accept Terms and Condition

Step 10: Type your Mobile Number in the Field

Step 11: Now WhatsApp will try to verify your number, but it will show fail message.

Step 12: Now click on Call Me >> You’ll receive a automatic call with a confirmation number, write down that number .

Step 13: Now type the received number in verification field and your done!

Enjoy WhatsApp on  PC!

Sunday, June 9, 2013

Shutdown Your Computer or a Remote PC via Command Prompt Simple Steps

Shutdown Your Computer or a Remote PC via Command Prompt


Shutdown computer with command promptMost of us shutdown our computers using the power button given in the Start menu. Some of us use the physical power button on our machines. Very few people actually use other means of shutting down a computer and even less is the number of people who use the command prompt to shutdown a computer.

A reason for this is that most of us don't know that the command prompt can be used to not only shutdown, restart or log off our computer instantly but also to shutdown a remote computer provided you have administrative access. It can also be used to hibernate a computer and give a comment containing the reason for shutdown. This post will show you how to do all this.


Required
A computer running Windows (XP, Vista, 7 or 8) with the command prompt working perfectly, i.e. not disabled by a virus.

Initial Steps
1) Press Windows Key + R.
2) Enter CMD and press Enter.

This will start the command prompt. Follow the instructions below depending on what you want to do.

Shutdown Local Machine (Your Computer)
Type "shutdown -s" without the quotes in the command prompt and press Enter. Shutdown is the command being executed and the switch -s tells the computer to shutdown.

Restart your Local Computer
Type "shutdown -r" in the command prompt and press Enter. In this case, the command switch -r is telling the computer to restart after shutdown.

Log Off the Current User
Type "shutdown -l" in the command prompt and press Enter. The -l command switch tells the computer to log off.

Shutdown a Remote Computer
Type "shutdown -s -m \\name of the computer" in the command prompt and press Enter. Replace \\name of the computer with the actual name of the remote computer you are trying to shutdown. As mentioned earlier, you must have administrative access to the computer you are trying to shutdown. To know if you have administrative access, press Windows key + R and then type the name of the computer and press Enter.

Note: If you don't remember the name of the remote computer, you can look for it by opening a list of all the computers you are connected to by executing "net view" in command prompt.

If you can connect to the computer, you will be asked to login with your username and password. Upon entering them, a window will display the list of all the directories available to you. This should help you know whether you can or cannot shutdown the remote computer.

Hibernate a Local Computer
Type in "Rundll32.exe Powrprof.dll,SetSuspendState" without the quotes and press Enter. Your computer should hibernate, if it does not, then you must enable hibernation to do this.

Shutdown your or a remote computer after a specific time
Type "shutdown -s -t 60" to shutdown your computer after 60 seconds. Upon executing this, a countdown timer displaying a warning message will be shown. This command uses the -t command switch followed by a variable (which is 60 in this case) which represents the number of seconds after which the computer will shutdown.

Display a Message containing the reason for shutdown
Type shutdown -s  -t 500 -c "I am tired. I don't want to work anymore." (with the quotes) and press Enter. The -c switch is used in the code to give the reason for shutting down and what is followed in quotes will be displayed in the dialog box as the reason. This can be used to display all sorts of funny messages. One example :-

Skynet has become self aware. John Connor did not stop me. You can not use your PC anymore.

Stop a System Shutdown
Type "shutdown -a" and press Enter. This will stop the system from shutting down if the countdown to shut down has not reached 0.

HOW TO LOCK or HIDE FOLDER OR FILES WITHOUT ANY SOFTWARE

 HOW TO LOCK FOLDER OR FILES WITHOUT ANY SOFTWARE

Password Protect folders in Windows without any Software
Most of us have private data. Not all of us have a private computer to keep that data. So, we just end up with other people viewing that data. Although password protecting software do work, it is almost useless to hide private data with these software(because we are always questioned as to what it is that we are hiding with the help of these software).

Hidden folders do not work as they can be easily searched with Windows Search. So, we need an alternative way to create hidden password protected folders which only we can access. And that is exactly what we will learn in this post.

With this trick, you can create a secure password protected folder in Windows which no one except you can access. To use this trick, follow the instructions given below:-
1.  Open Notepad.
2.  Copy and paste the exact code given below:-

    cls
    @ECHO OFF
    title techchating.blogspot.in
    if EXIST "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" goto UNLOCK
    if NOT EXIST MyFolder goto MDMyFolder
    :CONFIRM
    echo Are you sure to lock this folder? (Y/N)
    set/p "cho=>"
    if %cho%==Y goto LOCK
    if %cho%==y goto LOCK
    if %cho%==n goto END
    if %cho%==N goto END
    echo Invalid choice.
    goto CONFIRM
    :LOCK
    ren MyFolder "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    attrib +h +s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    echo Folder locked
    goto End
    :UNLOCK
    echo Enter password to Unlock Your Secure Folder
    set/p "pass=>"
    if NOT %pass%== www.techchating.blogspot.in goto FAIL
    attrib -h -s "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}"
    ren "Control Panel.{21EC2020-3AEA-1069-A2DD-08002B30309D}" MyFolder
    echo Folder Unlocked successfully
    goto End
    :FAIL
    echo Invalid password
    goto end
    :MDMyFolder
    md MyFolder
    echo MyFolder created successfully
    goto End
    :End



Hide Folders without any Software


3.  Click on the File Menu. Click on Save As.
4.  Select All Types in the Save As Type drop down menu. Save the file as *.bat or Locker.bat.


After creating the file, double click on the Saved file. A new folder will be created. Enter your data in the folder. Again, double click on the batch file. Type Y and press Enter. The folder will be hidden from view.

To re-view your folder, double click on the saved batch file. Enter password as "www.techchating.blogspot.in" without quotes and press Enter key. This is also the default password. Your folder will be visible again.

To change the default password, edit the part of the code given in blue and enter your own password.

The overall usability of this trick can be improved by deleting the batch file after hiding your folder and re-creating it when you wish to access your folder again.

If you face any problem using this trick, you can write a comment and I will do my best to help you.

Note: This works on Windows 7, Windows XP and Vista. First try this on useless data to be sure and then only hide your personal data.
hope u understood.....

Thursday, May 30, 2013

How to recover hidden data (infected files) from virus infected USB/Pendrive/Flash drive/Hard disc

How to Recover Hidden Files From Virus Infected USB Pendrive without any Software :

Insert infected drive(flash,usb,pen drive,external hard disk) into computer and find drive letter of connected USB drive
For Example, I:

Now click on Start --> Run
In Run box, type cmd and hit Enter
Now command prompt will appear, in command prompt type the drive letter of your pen drive and hit Enter.
c:\users\name> I:

Example <type I: >


After that, type attrib -s -h /s /d *.*


Now hit Enter and wait for sometime.
You have done ... Now you can view all your files in pen drive without any problems.


Thursday, December 20, 2012

Windows8 details with Screen shots


5 main reason you should upgrade to windows8

1.Faster Startup:

It takes only 10-15 sec...

2. A Whole new world of apps

3. SkyDrive integration

4. Better security, Less intrusive updates Better security,

5. First class touch input,but still with keybors and mouse

for more read below article...



Windows 8 is to be launched soon,...  Windows8 comes after the successful previous version of most known Windows 7..
But, windows 8 is much better than windows 7 or any other previous version of windows....
Windows 8 developer preview was released a few months before,.. I have downloaded, and installed it,..
I would like to share something about win8 with you...

I don't know about all the features of windows 8 , but i am sharing the facts  i know...
Windows 8 have many features compared to windows 7...

* SUPPORT FOR ARM PROCESSORS....

   Windows 8 support not only x86 processors (64bit and 32bit) , but it supports ARM processors...
   So windows 8 can be used in tablets which uses arm processors..

* DESKTOP

->For the most part, the desktop should feel pretty familiar to Windows 7 users, especially compared to that redesigned Start Screen. Still, there are some differences here, too. For starters, the Aero UI is no more, which means windows no longer have a transparent border. Everything here is flat and two-dimensional, not unlike those new Live Tiles.
   Windows 8 desktop is very similar to windows 7..
   Only difference is in the start icon....
desktop view

* START MENU
In addition to the Start Menu, you can customize the look and feel of the lock screen. This includes the background photo, as well as which notifications are displayed. For instance, even without entering your password, you can see upcoming calendar appointments, as well as a peek at how many unread messages or emails you have. In the PC settings, you can also choose to display detailed information for one of two things: your upcoming calendar appointment, or the weather forecast..
See the screen shot of start menu of windows 8









***The search of windows 8 is optimized for fast and better searching,  And it looks nice...





** CONTROL PANEL
   control panel of windows 8 has totally a new Style.. It's better,...









***We can add feeds of our interest,.. Entertainment, fashion or whatever your interest is.. 





**** THE WINDOWS 8 ORIGINAL VERSION WILL BE HAVING INTERNET EXPLORER 10..










* TASK MANAGER LOOKS AND FEELS DIFFERENT





Task manager of windows 8 is better one that of windows 7,.. it have many improved features...




##*WINDOWS 8  HAVE AN  IMPROVED  EXPLORER,..

The copying can be paused, and resumed,.. This feature is not available in windows 7... And as you can see in the screen shot, The copying speed indicator is is different and is good,..







Also, multiple copying dialogue boxes  are integrated to one dialogue box.. This is very useful feature,.. None of the previous versions of windows have this feature,.. But ubuntu and many other linux distros have this feature...









Windows 8 is having native support to usb 3.0
usb 3.0 is about ten times faster than usb 2.0.. Windows 8 comes with usb 3.0 drivers...


If You want to try the developer preview, You can download it from their forum.
http://www.forumswindows8.com/windows-8-download/



I prefer you to try it in virtual box, for familiarizing,....

for virtual box details click here



Thursday, December 13, 2012

Use and Hack BlackBerry Browser without BIS or BES

Enable (hack) BlackBerry Browser without BIS/BES
Follow these steps to do it:

First we need to enable legacy restore mode. To do that:
•    Go to Options > Advanced Options > Service Book.
•    For QWERTY models hold ALT and press 'S' 'B' 'E' 'B''. For Sure-type (1/2 qwerty) models hold ALT and press 'S' 'S' 'B' 'E' 'B' & for touch screen models hold [!?123] until it show lock icon and press 4 ? 2 ? - means ALT 'S' 'B' 'E' 'B'.
•    You will then see the message "Legacy SB Restore Enable".
After that you are free to backup/Restore Service Book on your BlackBerry.

Now download this file: http://www.box.net/shared/j6lp6cii8g

It is a backup file(.ipd) which can be used to restore a specific service book. Now follow these steps
•    Open Blackberry Desktop Manager.
•    Select Backup and Restore, you will see main options, as follows:
•    Click Advanced button. In Advanced option, click File. A drop down menu appears and then click Open. Now select the backup file that we downloaded.
•    Then select Service Book at the left column and click '>>' button.
•    After that, disconnect the phone from the PC and then goto Options > Advanced Options > Service book on your phone. And make sure there is Service Book with name 'Browser Config [BrowserConfig]' is there.
•    Now you have to configure the browser to use this Service book. To do goto Options > Advanced Options > Browser and check if 'Browser' is selected as shown in the image below.
 •    Now go to your Blackberry Desktop. Voila.... there is your Browser icon.
•    Next step is that you need Access Point in Options > Advanced Options > TCP. Fill those fields. If you don't have those info's, contact your service provider and ask them.

•    Restart your phone and run Browser. Enjoy your new freedom. To install AppWorld, goto http://www.blackberry.com/appworld/download from your Blackberry Browser.

Troubleshooting:
•    If you see the Browser icon, You have Service Book on your phone. If the Browser doesn’t work, go to Options > Advanced Options > Browser and check if 'Browser' is selected. Then back to Home and try Browser again. with some lucky it will work
•    If your BlackBerry have IT-Policy. Try to remove IT-Policy first and then Enable Browser.
•    If you are still stuck somewhere, try reintalling the Blackberry OS (Upgrade or Downgrade) then retry this hack.

lets.....................enjoy.........