Skip to content

System Admin

General discussions on System Administration and support. Are you your company's IT expert?

This category can be followed from the open social web via the handle system-admin@forum.codeproject.com

3.7k Topics 12.3k Posts
  • How to change the default font of Wins 98 Word Pad

    tutorial question
    2
    0 Votes
    2 Posts
    12 Views
    L
    Get the source from msdn and compile it yourself!
  • Win2000 and AX63Pro

    sysadmin
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • I'm new to CE. Could someone explain...

    c++ question com business
    2
    0 Votes
    2 Posts
    12 Views
    A
    OEMs can customize WinCE to suite their needs. You will have to read the specs of the device you want to use to determine what is does and does not support and what flator of WinCE it uses (if it uses WinCE at all).
  • logging in /reboot

    2
    0 Votes
    2 Posts
    11 Views
    L
    There are two ways to do it. 1. You can put your exe in windows/startup folder. 2. You can create an entry in HKEY_LOCAL_MACHINE\software\microsoft\Windows\currentversion\run Santosh
  • How to Work with a cash machine With Windows?

    question c++ tutorial
    2
    0 Votes
    2 Posts
    12 Views
    L
    Are your referring to a POS (Point-of-Sale) system? If so, I have a lot of experience with these systems. In short, is highly dependant on the model. Usually it would communicate using ASCII text files. Newer ones use XML transmitions. I would suggest contacting the vendor for more information on your particular model. - Joshua :cool:
  • Windows 2000 and named pipes

    sysadmin help question
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • 0 Votes
    2 Posts
    12 Views
    E
    Well, Microsoft uses it to port IE to Unix. So it certainly works for them. As for performance, well, it works by essentially porting Win32 to Unix, which gives a lot of overhead. It won't be as fast as native apps, and will likely use a ton of memory if IE for Unix is any indication.
  • Win95 Error: Application already exists

    help question
    2
    0 Votes
    2 Posts
    8 Views
    M
    Check out TracePlus Win32 - it's a general tracing utility that shows all the API calls a program makes. --Mike-- http://home.inreach.com/mdunn/ "Would it save you a lot of bother if I just gave up and went mad now?" -- Arthur Dent
  • How to count the devices used in a RAS connection.

    tutorial c++ perl help question
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • Determining disk geometry

    testing beta-testing question
    1
    0 Votes
    1 Posts
    6 Views
    No one has replied
  • How to implement Tunking?

    help question tutorial
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • General Discussions

    performance tutorial question lounge
    2
    0 Votes
    2 Posts
    14 Views
    M
    You should investigate the docs at msdn.microsoft.com for the basics of what you are asking. There are many options for what you ask, and they vary from OS version to version (98/NT/CE/etc.)
  • Operating Systems

    question architecture
    2
    0 Votes
    2 Posts
    9 Views
    M
    Big Question, but I'll give you a very brief rundown: Windows 95/98/ME: Ever evolving shell interface that still fundamentally sits on the DOS architecture (although it doesn't use very much DOS anymore). This is the "legacy" architecture for Microsoft, and accounts for the majority of its installs. Fundamentally runs on ASCII internally, and uses FAT disk technology. Windows NT/2000: Next generation architecture. Built on "microkernel" design intended to be portable to other architectures (now effectively abandoned), to be capable of utilizing multiple processors in a machine (SMP), adds rich security model (which I can barely understand sometimes :)), uses UNICODE internally (but also offers an ASCII model), and offers much more advanced NTFS disk technology. Much more robust, fault tolerant and secure. Windows CE: My feeling about CE is that it was developed using a subset of the NT architecture. It is designed for instant on, handheld and embedded devices. It is UNICODE only, which means that there are sometimes porting issues moving older code to the platform. CE separates the OS into at least two distinct portions, Kernel and Interface, so that devices that don't require an interface don't need to bring that code along. Fundamentally a very trimmed down version of the Win32 API shared by all Microsoft platforms, focused on minimal resource requirements. Please don't take this comments as anything other than an off-the-cuff summary, for a full description, please see the docs from Microsoft.
  • Installing Network Protocol Driver

    sysadmin json help announcement
    3
    0 Votes
    3 Posts
    11 Views
    Z
    What u should do is to write another simple program. This program does the things that INF file just does. First, U copy the .sys to the system directory using "CopyFile"; Second, U Create/open driver registry key and set its values, using reg API, such as "RegCreateKeyEx". Third, using "OpenSCManager", "OpenService", "CreateService" etc, U can start the driver. About how to use these APIs, Look to the MSDN.
  • change the windows opening screen

    help
    5
    0 Votes
    5 Posts
    21 Views
    J
    While I don't know what you app is take a look at the following topic in MSDN - seems very interesting and it might allow you to do some interesting things: GINA DLL Interface API
  • Linux kernel module development in C++

    c++ linux help tutorial
    1
    0 Votes
    1 Posts
    3 Views
    No one has replied
  • Windows 2K Compalibility

    c++ sysadmin question
    2
    0 Votes
    2 Posts
    9 Views
    E
    MFC 4? VC6 comes with MFC 4.21 (though it's called MFC42.dll) Your primary problems with this approach depend on what kind of work you're doing. In most cases, you'll be ok. If it works on Win95, it will probably work on 2000 as long as it's not a Win95 specific API (the SDK mentions these). Usually you have trouble going the other way. Developing on NT and porting to 95, since 95 has many limitations on things which are not limited under NT/2000.
  • Socketproblem using service

    debugging
    1
    0 Votes
    1 Posts
    4 Views
    No one has replied
  • Determining Whether or Not User is Logged On from Service

    c++ question sharepoint
    1
    0 Votes
    1 Posts
    5 Views
    No one has replied
  • Windows 95 Setup

    c++ question announcement workspace
    3
    0 Votes
    3 Posts
    13 Views
    D
    Thanks. Later in the day after I posted the message I went poking around in the registry. I found an entry from the MDAC install from Service Pack 4 that was calling RUNONCE. I removed it and that fixed the problem. Thanks again.