# Wednesday, August 02, 2006

Ru n MAC OSX in PearPC on Windows XP

Yes you can install MAC OS on windows xp machine now. check the document for full details.

ppcguide-v1.pdf (803.17 KB)

http://pearpc.sourceforge.net/

 http://pearpc.sourceforge.net/getstart.html

 

eravi

posted on Wednesday, August 02, 2006 4:42:02 AM (India Standard Time, UTC+05:30)  #    Comments [0]
# Monday, July 03, 2006

This article will give you more information on ports, protocals and services used on microsoft server OS.


The port information in this article should not be used to configure Windows Firewall.

For information about configuring Windows Firewall, see the Windows Firewall Settings Technical Reference.

 

Overview

 

System services ports

 

Ports and protocols

    Active Directory port and protocol requirements

REFERENCES

How to configure a firewall for domains and trusts - 179442 (http://support.microsoft.com/kb/179442/)

 Information about TCP/IP port assignments - 174904 (http://support.microsoft.com/kb/174904/)

For more information about how to restrict Active Directory replication traffic, see the "Restricting Active Directory replication traffic to a specific port" -

224196 (http://support.microsoft.com/kb/224196/) 

Port Reference for MS TCP/IP" in the Microsoft Windows NT 4.0 Resource Kit -

http://www.microsoft.com/resources/documentation/windowsnt/4/server/reskit/en-us/net/port_nts.mspx

TCP and UDP Port Assignments -

http://www.microsoft.com/windows2000/techinfo/reskit/en-us/default.asp?url=/windows2000/techinfo/reskit/en-us/cnet/cnfc_por_GDQC.asp

Port Assignments and Protocol Numbers -

http://www.microsoft.com/resources/documentation/Windows/2000/server/reskit/en-us/Default.asp?url=/resources/documentation/windows/2000/server/reskit/en-us/cnet/cnfc_por_ZQYU.asp

The Internet Assigned Numbers Authority coordinates the use of well-known ports -

http://www.iana.org/assignments/port-numbers

For more information about how to configure DTC to use a specific range of ports, see the "Configuring Microsoft Distributed Transaction Coordinator (DTC) to work through a firewall" -

250367 (http://support.microsoft.com/kb/250367/) 

File Replication Service

For more information about how to configure FRS to work with a firewall, see the "How to restrict FRS replication traffic to a specific static port" -

319553 (http://support.microsoft.com/kb/319553/) 

Internet Information Services

For more information about the ports that are used by IIS 4.0, by IIS 5.0, and by IIS 5.1, see the "Inetinfo services use additional ports beyond well-known ports" -

327859 (http://support.microsoft.com/kb/327859/)   

SQL Server

For more information about how SQL Server 2000 dynamically determines ports for secondary instances, see the "Behavior of SQL Server 2000 Network Library during dynamic port detection" -

286303 (http://support.microsoft.com/kb/286303/) 

For more information about the ports that are used by SQL Server 7.0 and SQL Server 2000 for OLAP, see the "TCP ports used by OLAP services when connecting through a firewall" -

301901 (http://support.microsoft.com/kb/301901/) 

Terminal Services

For more information about how to configure the port that is used by Terminal Services, see the "How to change Terminal Server's listening port" -

187623 (http://support.microsoft.com/kb/187623/) 

 

posted on Monday, July 03, 2006 1:52:50 AM (India Standard Time, UTC+05:30)  #    Comments [0]

 

Issues or Symptoms Article Title & Link Description or Resolution
Server 2003 TS Overview Technical Overview of Windows Server 2003 Terminal Services The TS component of Server 2003 builds on the solid foundation provided by the Application Server mode in Windows 2000 TS, and includes the new client and protocol capabilities in Windows XP. TS lets you deliver Windows-based applications, or the Windows desktop itself, to virtually any computing device, including those that cannot run Windows.
Guidelines for deploying TS Guidelines for Deploying Terminal Server how to installing Your Terminal Server
How to installing Your License Server
How to activating Terminal Server Licensing
How to deciding What Type of CAL to Purchase
Making Sure That Your Terminal Server Can Detect the License Server
Matching Terminal Server Mode with Types of CALs Purchased
TS FAQs Frequently Asked Questions About Terminal Services Deployment
Licensing
Connectivity
Client
Printing
How to plan and deploy a load balanced TS farm using session directory, and how the session directory operates in a load balanced environment. Session Directory and Load Balancing Using Terminal Server

TS Session Directory is a feature that allows users to easily and automatically reconnect to a disconnected session in a load balanced TS farm. The session directory keeps a list of sessions indexed by user name and server name. This enables a user, after disconnecting a session, to reconnect to the correct terminal server where the disconnected session resides to resume working in that session.

How to manage a server remotely Remote Administration of Windows Servers Using Remote Desktop for Administration Remote Desktop is a feature in Server 2003. It provides the Windows graphical user interface to remote devices over LAN, WAN, or Internet connections. This white paper explores the design goals and implementation of Remote Desktop in Server 2003, and explains how an enterprise can use this feature to remotely manage its Servers from anywhere.
How to restrict user sessions Locking Down Windows Server 2003 Terminal Server Sessions T this white paper explains how you can use the features of Active Directory to restrict user sessions on the Terminal Server to only the applications and desktop functionality that the administrator deems necessary.
Where to download Remote Desktop Web Connection Remote Desktop Web Connection for Windows Server 2003 Software Download

The Remote Desktop Web Connection ActiveX control allows you to access your computer through Remote Desktop, via the Internet, from another computer using Internet Explorer. You must be using Internet Information Services (IIS) to use this feature.

Remote Desktop FAQs

Frequently Asked Questions about Remote Desktop

 Get answers to common questions about using Remote Desktop.
How to enable users to connect a server remotely Enabling Users to Connect Remotely to the Server Using the Remote Desktop Users group to grant access to a terminal server
Assigning Permissions Manually
TS Tools and settings Terminal Services Tools and Settings

Terminal Services Tools

Terminal Services Group Policy Settings

Terminal Services WMI Classes

Network Ports Used by Terminal Services

Related Information

posted on Monday, July 03, 2006 1:29:30 AM (India Standard Time, UTC+05:30)  #    Comments [0]

How to Give permission to large number of Tables/SP/Views in a Database . (Microsoft SQL 2000)

Permission script for Tables.

SELECT 'grant select, insert, update on ' + TABLE_NAME + ' TO [Machine name\user]' FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_TYPE='BASE TABLE'

 Permission Script for Store procedures.

SELECT 'grant EXECUTE on ' + ROUTINE_NAME  + ' TO [Machine name\user]' FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE='PROCEDURE' and Lower(SUBSTRING(ROUTINE_NAME,1,2))<>'dt' AND PATINDEX('%sys%',ROUTINE_NAME)=0

Permission Script for Views

 SELECT 'grant select on ' + TABLE_NAME + ' TO [Machine name\user]' FROM INFORMATION_SCHEMA.views

 Run the above scripts to get the details of the Tables/SP/Views like this.

Example for Tables script.

grant select, insert, update on Country TO [Machine name\user]
grant select, insert, update on Customer TO [Machine name\user]
grant select, insert, update on CustomerBrands TO [Machine name\user]
grant select, insert, update on CustomerUserMapping TO [Machine name\user]
grant select, insert, update on dtproperties TO [Machine name\user]

 Follow the same method for the SP and Views.

 

eravi

posted on Monday, July 03, 2006 1:21:42 AM (India Standard Time, UTC+05:30)  #    Comments [0]

Enabling Remote Desktop using regedit, follow these steps:

  1. Run REGEDIT from Start>Run
  2. Click on File, then select Connect Network Registry
  3. Type the remote computer IP or host name in the Enter the object name to select and the click OK.

4. If you don't have permission to access the remote computer, the logon screen will show up. Type the username and password for the remote computer. Then click OK.

5. Now, the remote computer is listed in the Registry Editor.

6. Browse to HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Control\Terminal Server, in the right panel, seelct  fDenyTSConnection (REG_DWORD). Change the value data from 1 (Remote Desktop disabled) to 0 (Remote Desktop enabled).

7. Close the regeidt.

8. Try to connect now that machine using the RDP.

posted on Monday, July 03, 2006 1:14:05 AM (India Standard Time, UTC+05:30)  #    Comments [0]
# Wednesday, February 15, 2006


This is how to add/remove IP address, Default Gateway and DNS and WINS addresses to your NIC using a script.

you can use Netsh.exe -which is available on Windows 2000, Windows XP and Windows Server 2003.

This can be used when you two different places LAN Environment with static and DHCP

Adding ip addresses - Static LAN Environment

===================================

netsh interface ip set address name="Local Area Connection" static
158.223.101.53 255.255.0.0 158.2232.89


netsh interface ip set dns "Local Area Connection" static 158.223.1.1
netsh interface ip set dns "Local Area Connection" static 158.223.1.3

===================================

Removing ip addresses - DHCP Lan Environment

netsh interface ip set address "Local Area Connection" dhcp

netsh interface ip set dns "Local Area Connection" dhcp

===================================

E.Ravi

 

posted on Wednesday, February 15, 2006 6:32:48 PM (India Standard Time, UTC+05:30)  #    Comments [0]
# Monday, January 09, 2006
Help topics
posted on Monday, January 09, 2006 4:18:47 PM (India Standard Time, UTC+05:30)  #    Comments [0]
# Wednesday, July 20, 2005

After logging in, be sure to visit all the options under Configuration in the Admin Menu Bar above. There are 26 themes to choose from, and you can also create your own.

 

posted on Wednesday, July 20, 2005 12:30:00 PM (India Standard Time, UTC+05:30)  #    Comments [0]
# Tuesday, May 17, 2005
Calculating bandwidth
posted on Tuesday, May 17, 2005 5:45:28 PM (India Standard Time, UTC+05:30)  #    Comments [0]
# Saturday, March 19, 2005
Upgrade your Blog today with Dasblog1.7
posted on Saturday, March 19, 2005 10:55:16 AM (India Standard Time, UTC+05:30)  #    Comments [0]