Saturday, 30 August 2014

How to View Apple iMac / Macbook / IPAD / IPHONE Display on Screen Via Apple TV

 
To enable AirPlay Mirroring on your iOS 7 device, follow these steps:
  1. Connect your iOS device and your Apple TV to the same Wi-Fi network.
  2. Swipe up from the bottom of your screen to access Control Center.
  3. Tap AirPlay. See what to do if you can't see the AirPlay icon.
  4. Tap the name of the Apple TV you wish to AirPlay to, then tap Mirroring. Once enabled, your iOS device's screen will be mirrored on your Apple TV.

Learn more

If your device isn't using iOS 7

  1. Connect your iOS device and your Apple TV to the same Wi-Fi network.
  2. On your iOS device, double-click the Home button to display your recently used apps.
  3. Swipe the recently used apps twice from left to right until you see the AirPlay icon: AirPlay icon. If you don't see the AirPlay icon on your iOS device, your iOS device and Apple TV may not be on the same network. Get help troubleshooting, if necessary.
  4. Tap the AirPlay icon, AirPlay icon, to display a list of available AirPlay devices.
  5. To use AirPlay Mirroring, select the name of your Apple TV and turn Mirroring On.

Friday, 22 August 2014

14 August 2014 on the Streets Of Karachi Photos






Monday, 11 August 2014

How to Create Batch File to Ping Multiple IPs at the Same Time in Different and Same CMD Windows With Log Auto Log


HOW TO PING Multi SERVERS ON NETWORK WITH in different Window of Command Prompt  Via 1 Batch File.

Create a Bat File and Past the code blow in to the file and save as PING.BAT and Enjoy.

@echo off
:LOOPSTART

start cmd /k Ping 192.168.1.11 -n 10

start cmd /k Ping 192.168.0.81 -n 10

start cmd /k Ping 192.168.0.83 -n 10

start cmd /k Ping 192.168.0.169 -n 10

start cmd /k Ping 192.168.0.30 -n 10

start cmd /k Ping 192.168.0.1 -n 10






  HOW TO PING Multi SERVERS ON NETWORK WITH in Single Window of Command Prompt Via 1 Bat File and Create a Log File of Ping Result.

Create a Bat File and Past the code blow in to the file and save as PING.BAT and Enjoy. 
@ECHO
:LOOPSTART
time /T >> Pinglog.txt
ping  192.168.0.81 -n 4 >> Pinglog.txt
ping  192.168.0.169 -n 4 >> Pinglog.txt
ping  192.168.0.1  -n 4 >> Pinglog.txt
ping  192.168.1.11  -n 4 >> Pinglog.txt
ping  192.168.1.153  -n 4 >> Pinglog.txt
ping  192.168.0.83  -n 4 >> Pinglog.txt
pause