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
  • API to find logged off computers

    sysadmin json question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • automating driver install...xp sp1

    help question announcement
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Network benchmark software

    sysadmin help performance question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Acrobat Reader stays alive

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Loading correct IE profile from NT Svc.

    c++ help question sysadmin
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Install problem with Mandrake 8.2...

    help algorithms question
    8
    0 Votes
    8 Posts
    0 Views
    L
    Great - I got my Slackware disk yesterday, and fired it up this morning. True to what I expected, Slackware is a little more geeky. I did however figure most of it out. Now my only problem is that there is only 600mb available to Slackware (800mb hdd, 200mb swap) and I need to fit it on here. What packages should I install for the claimed minimum of 500mb install space (ie no X) Paul // vibrator.h - from Smartphone SDK // // Return values: // E_FAIL == failure, probably device not present (use VibrateGetDeviceCaps) // E_NOTIMPL == the feature you are attempting to use is not yet implemented // S_OK == hurray, everything's great // HRESULT Vibrate(DWORD cvn, const VIBRATENOTE * rgvn, BOOL fRepeat, DWORD dwTimeout); "hurray! the vibrator's working! everything's great :~ " - benjymous on SDK's
  • XP upgrade problems

    help game-dev question
    3
    0 Votes
    3 Posts
    0 Views
    A
    What is 'Unreal 2003'?
  • SMTP configuration

    sysadmin data-structures tutorial workspace
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Auto set language keyboard layout and more ...

    question discussion
    2
    0 Votes
    2 Posts
    0 Views
    L
    Hi, Dim intResponse intResponse = MsgBox(Dir("C:\*.*"), vbOKCancel) If intResponse = 2 Then Exit Sub Do i = MsgBox(Dir, vbOKCancel) If i = 2 Then Exit Do Loop This is a bit rough and ready, but you can easily customize it to not display the files in a msgbox but to write them to a file with Open "file.fil" For Append as #1 You will also have to manually change the path, but you can easily make a front end around this. Hope it helps. Paul ;) The following statement about your geekness is true. The previous statement about your geekness is not true. - Douglas Hofstader Sonork ID: 100.33943
  • win2k dos prompt auto complete with tab?

    windows-admin question
    3
    0 Votes
    3 Posts
    0 Views
    L
    bryce wrote: Hi does anyone know which registry setting i need to set to allow the tab key in ms dos to function as an autocomplete key in win2k? I would start by right-clicking on the Command Prompt icon and selecting Properties. In there you will find the option. If my memory is completely shot, you will instead need to install TweakUI 1.3 from Microsoft to set this up. If I wasn't sitting in front of an AMD K6-2 200MHz, 48MB RAM, Windows NT 4 Workstation beast I would check this for you and give you the correct answer. Michael Martin Australia mjm68@tpg.com.au "I personally love it because I can get as down and dirty as I want on the backend, while also being able to dabble with fun scripting and presentation games on the front end." - Chris Maunder 15/07/2002
  • encrypt files on CD

    tutorial
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Stopping a USB device

    tutorial question
    3
    0 Votes
    3 Posts
    0 Views
    B
    Thanks for your reply, but this will not help me because I have not written my own driver. My device is using some default driver. (The device I'm using is a ide dvd-rom).
  • Upgrading to Win 2000 Server from Win 2000 Pro?

    sysadmin question
    2
    0 Votes
    2 Posts
    0 Views
    B
    No, I don't believe that is possible. "We will thrive in the new environment, leaping across space and time, everywhere and nowhere, like air or radiation, redundant, self-replicating, and always evolving." -unspecified individual
  • System Message Boxes

    tutorial question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • office time synch

    question
    1
    0 Votes
    1 Posts
    0 Views
    No one has replied
  • Older version of Linux?

    linux help question announcement
    3
    0 Votes
    3 Posts
    0 Views
    L
    tks for the info - and no, you guessed it, i'm not your regular Linux geek, but would really like to become one :-D I'll see about finding a LUG... Paul ;) The following statement about your geekness is true. The previous statement about your geekness is not true. - Douglas Hofstader
  • default mail client

    windows-admin question
    3
    0 Votes
    3 Posts
    0 Views
    A
    Super! Thanks so much, Dana! That seems to be what I needed! F
  • Executing Windows script from linux

    linux tools question
    2
    0 Votes
    2 Posts
    0 Views
    D
    I am sure there are more practical ways to do it, but for achieving it "quickly", the fastest way I can think of without any real code to write would be to automate the process though SSH. I would really think about what you want to do to accomplish this, as there are SIGNFICANT security implications if you do this wrong. Anyways.... here would be a simple way to do it: 1) Install Cygwin[^] on the Windows 2000 box and ensure you install the OpenSSH daemon. 2) Set up your SSH daemon to run as a service in W2K. There is a good article on how to do that here[^] 3) Set up your SSH keys so you can SSH into the Windows box without the need for a password with the use of SSH public key authentication. You can learn a bit on how to do that by reading here[^]. 4) You should now be able to execute the scripts on the W2K box by automating the call. As an example this might work for ya: ssh user@w2kbox commandtoexecute CAUTION: Be careful to understand the implications of setting up SSH to your server. Make sure you have clean ACLs and limit the privileges in what the account you are SSHing in can do. If you require administrative access to run the script, consider using the runas command to do this so that you only elevate privileges for the execution of the script, and nothing more. P.S> I found the runas command to have some issues under bash in cygwin, so you might have to tinker with this for a bit. Good luck! - Dana :cool:
  • How can I learn HOOK?

    c++ question csharp
    2
    0 Votes
    2 Posts
    0 Views
    D
    I am not sure exactly what youw ant to know about hooking, so I am assuming you are looking for general info. I apologize if I am wrong in that assumption. Perhaps a google[^] search would be in order? I did a search of hook +C#"[^] and it returned a lot of discussionary items about it. Right off the bat it returned an article over at www.c-sharpcorner.com[^] that might fit your needs. Good luck :cool: - Dana
  • Windows Messenger Spam - Please Help

    help question lounge
    2
    0 Votes
    2 Posts
    0 Views
    R
    Try disabling (stopping and setting to manual) the 'Messenger' Service. Paul Watson wrote: "At the end of the day it is what you produce that counts, not how many doctorates you have on the wall." George Carlin wrote: "Don't sweat the petty things, and don't pet the sweaty things."