Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. msingle

    script to log all values for AutoadminLogon regkeys

    Any suggestions for performing the following? 1. Enumerate all domain members (NT not AD) 2. Read all values in HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Winlogon 3. Record all these values (CSV)
  2. msingle

    graphing question

    For this series of data: 4,5,7,3,4,8,0,0,0,0,0,0,0,0,0,0,0,0,0,0 How would I graph the percentile range...that is, this range of numbers fall the lowest 25%, then 50%, then 75%. I tried quatrile(array,x,1) quatrile(array,x,2) but the results don't make alot of sense.
  3. msingle

    selecting first numeric value in cell

    Something along these lines.. =AVERAGE(MID(F16:I16,1,2))
  4. msingle

    selecting first numeric value in cell

    One last question... using the above formula, how would I nest the AVG function in there?? Do I need a another cell?
  5. msingle

    selecting first numeric value in cell

    How would I select the first numeric value in this cell (actuually, it is the first value)... 63 of 92 lines on 9/15/03
  6. msingle

    cim reporting

    Something along these lines is what we use... if you have a DBA handy so much the better! This is the SQL statement we use for our ASP.Net page, but it should be similiar for a straight SQL query. === "UPDATE [R_Inventory] SET...
  7. msingle

    how to change a console script to cgi

    How would I make the following script for use in a web page, rather than the console script that it is? === start === ## Creation Date: 02-25-02 ## Mike Singleton use XML::Parser; print &quot;Enter Servername or IP Address:&quot;; SERVER: chomp($server=<STDIN>); print &quot;Enter User...
  8. msingle

    error on Background refresh

    Private Sub Workbook_Open() ' collect the Database Name and the Server Name Application.WindowState = xlMaximized ' If Sheet3.Range(&quot;A1&quot;) <> 1 Then ' Sheet3.Range(&quot;A1&quot;) = MsgBox(&quot;Please Create an ODBC DSN 'Insight' before you use this tool&quot...
  9. msingle

    newbie question(CS1525: Invalid expression term 'else')

    Same form and code... just added validation tags to make sure that the fields in the form are filled out.. tia! === start ==== <%@ Page Language=&quot;C#&quot; Trace=&quot;True&quot; %> <script runat=&quot;server&quot;> void Page_Load(Object Src, EventArgs E){ String strMarried...
  10. msingle

    Gentran NT/Oracle disaster test

    Anyone have a link or FAQ as to restore an EDI system (NT4) from tape and/or CD image perhaps? The EDI system links to an Oracle database... just some general info would be great.
  11. msingle

    abend waiting for spinlock

    Server SEA-FS0001 halted Wednesday, March 12, 2003 12:09:10.351 pm Abend 3 on P00: Server-5.60c-0: Deadlock detected waiting for spinlock Registers: CS = 0008 DS = 0010 ES = 0010 FS = 0010 GS = 0010 SS = 0010 EAX = 03938711 EBX = CFCA3000 ECX = D04EE744 EDX = 0000001E ESI =...
  12. msingle

    synchronize iLO &amp; RiLO passwords

    Anyway to synch and/or change iLO and/or RiLO passwords across several hundred servers easily from CIM7? Even programtically would be nice....
  13. msingle

    create telnet activex control

    Anyone have a good starting point for programming a telnet activex control for use in an asp page?
  14. msingle

    win32::registry question

    How would I get the following key from a remote win32 machine?? Key: HKEY_LOCAL_MACHINE\SOFTWARE\Network Associates\TVD\Shared Components\VirusScan Engine\4.0.xx\szDatVersion
  15. msingle

    MSPS2K2 pass thru NT authentication

    Has anyone gotten this to work? I set up 3 test users in the MS Project Server 2002 using thier domain accounts, no errors. Yet they cannot login using the DOMAIN\USERID... any ideas?
  16. msingle

    run perl console app within Tk window

    I have a perl app that runs from a command line, I would like it to run in a Window (either TK or Win32), if this is possible. use Tk; my $mw = new MainWindow('title'=>&quot;Title&quot;); <insert cli perl code here to run inside of MainWindow>
  17. msingle

    modify SQL statements used on reports page

    Is there a place where the SQL statements are stored on the CIM7 box? I want to modify the SQL statements used on the 'reports' page. Basically re-order the ASC by drive space, instead on the alphabetic method used. tia.
  18. msingle

    run perl console app within Tk window

    How would I run a console app within a TK window?? Thanks.
  19. msingle

    interate files in glob

    How would I count the number of file in: e.g. my @files = sort glob ('3E*.log'); ??
  20. msingle

    Open new window based on write.response

    Ok... maybe some javascript... how would I go about doing that? I tried, but with the sample code listed before, the ASP page gives and error.

Part and Inventory Search

Back
Top