Asus Smart Gestures rychlost scroll ve Firefox

Asus Smart Gesture has a settings file for configuring scroll behavior for specific applications.
For Windows7 x64 a path to file is the following:
"C:\Program Files (x86)\ASUS\ASUS Smart Gesture\AsTPCenter\TPProfile_Win7.xml"
I have added the configuration item inside this file to fix the problem with Firefox:
<ap name="firefox.exe" class_name="MozillaWindowClass" target_name="MozillaWindowClass" title_name="" target_type="0" support="33413" pan_filter_x="4" pan_filter_y="4" zoom_filter="1" pan_type="3" es_filter="4" es_type="3" zoom_type="1" rotate_type="0" swipe_type="3"></ap>
"name" is the executable filename of the application
"class_name", "target_name" is the windows class of the scrollable container inside the application. It was not working without specifying these parameters. I have determined appropriate parameters for Firefox application using third party "Windows Inspector" utility.
Other parameters I got from iexplore.exe, they are is enough for smooth scrolling.
Important note: to apply changes in configuration you need to kill the process "AsusTPCenter.exe". It is restarted automatically.
 

Windows XP remote shutdown

REQUIREMENTS FOR WINDOWS XP TO BE REMOTELY SHUTDOWN BY A LINUX SERVER:

  1. Disable Simple File Sharing. UNCHECK "Use simple file sharing" under My Computer > Tools > Folder Options > View.
  2. Check the Windows Firewall and make sure ICMP is enabled and File and Printer Sharing is enabled. Go to Control Panel > Security Center > Windows Firewall > Exceptions > CHECK "File and Printer Sharing". Also on the Advanced tab > ICMP Settings > CHECK "Allow incoming echo request".
  3. You must be able to successfully ping the IP address of the remote Windows XP computer you want to shutdown.
  4. The default Local Policy in Windows XP to force a remote shutdown is limited to members of the Administrator group. If you want to change this, use the Group Policy Editor (gpedit.msc) to change this Local Policy. Select Computer Configuration > Windows Settings > Security > Local Policies > User Rights Assignment > Force shutdown for a remote system and change the properties to include the user or group you want to have this authority.

 

REQUIREMENTS FOR THE LINUX SERVER TO REMOTELY SHUTDOWN WINDOWS XP COMPUTERS:

  1. Samba must be installed and working properly. In our subnet, the RHEL5 Samba Server is configured as a WINS server for our own separate workgroup.
  2. It is recommended that the DHCP server be setup to assign static IP addresses to the Windows XP computers. This makes control of the lab computers much easier.
  3. It is also recommended that BIND be setup with a zone file for the subnet to provide DNS resolution for the computers in the lab subnet.
  4. The following command will remotely shutdown a Windows XP computer under this scenario:
    net rpc SHUTDOWN -C "enter a comment to display at shutdown" -f -I x.x.x.x -U username%password
    In this example x.x.x.x is the IP address of the remote Windows XP computer, username is a member of the Administrator group on the Windows XP machine, and password is the correct password associated with the username.
  5. Test your configuration. Samba is very good about letting you know if your command works correctly or if you have problems.
  6. Next create a script to shutdown the Windows XP machines. Use crontab to schedule when you want the remote machines shutdown.

Windows 7 remote shutdown

 
 

There may be more setup to do, especially for Windows Vista, Windows 7 and further windows versions, to allow remote shutdown:

Part A) On the Windows machine:

1) Add a remote shutdown security policy:

  • run secpol.msc

  • in the program tree, open Security Settings > Local Policies > User rights Assignment

  • Find the entry Force shutdown from a remote system

  • Edit the entry, add the windows user account that will be used for shutdown (ex: nouknouk)

2) Add registry keys to disable UAC remote restrictions:

  • Run regedit.exe as Administrator

  • Find HKLM/SOFTWARE/Microsoft/Windows/CurrentVersion/Policies/System

  • Create a new registry DWORD(32) value named LocalAccountTokenFilterPolicy and then assign it the value 1

3) Start remote registry service:

  • Open cmd.exeas Administrator

  • Execute the two following commands:

    sc config RemoteRegistry start= auto

    sc start RemoteRegistry

Putty - záloha a obnova nastavení

Oblíbený nástroj pro přístup z Windows na linux/unix severy. Jeho nastvení je uložené v registrech. Zde je postup, jak nastavení zazálohovat exportem z registrů a po přeinstalaci windows ho dostat zpět.

Číst dál...