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 Andrzejek 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. 0LaoyanG0

    LSI 9266-8i (pulled from Cisco c220 M3) Slow performance

    I have a LSI 9266-8i pulled from a working decommissioned Cisco c220 M3. I plugged it into my Lab Sun x4170 and it runs slow. For kicks I plugged it into my desktop PC, MSI i7 x79 mobo, and it runs just as slow. I downloaded the new firmware...
  2. 0LaoyanG0

    IF statement codeblock (NEWBIE ALERT!)

    Oh yeah, I'm on v2.0 if that matters... Major Minor Build Revision ----- ----- ----- -------- 2 0 -1 -1
  3. 0LaoyanG0

    IF statement codeblock (NEWBIE ALERT!)

    Here's what I get doing that... PS C:\Users\Administrator> $DefaultPath = "C:\Temp" PS C:\Users\Administrator> $DirExists = Test-Path $DefaultPath PS C:\Users\Administrator> PS C:\Users\Administrator> if ($DirExists){ >> New-Item "$DefaultPath\$DateCode" -Type Directory >> # do more stuff here...
  4. 0LaoyanG0

    IF statement codeblock (NEWBIE ALERT!)

    I am trying to get a Powershell script to run. It has an if block. When I keep the code block it executes on the same line like this... If ($DirExists -eq $True) {New-Item ($DefaultPath + "\" + $DateCode) -Type Directory} It executes fine. But I need to execute a few more lines so I tried...
  5. 0LaoyanG0

    Stop error then reboot.

    I did some dump file examinations and I found the Broadcom NIC drivers to be at fault. I then upgraded the driver using the HP Smart start 7.90 CD and so far (1 month) there have been no crashes or BSOD or Stop anything. I pretty sure the previous admin used and older version Smart Start. Hope...
  6. 0LaoyanG0

    Stop error then reboot.

    I am getting stop errors... System Failure: Stop error Reason Code: 0x805000f Bug ID: Bugcheck String: 0x000000d1 (0x0000000c, 0xd0000002, 0x00000000, 0xf764e8d5) Comment: 0x000000d1 (0x0000000c, 0xd0000002, 0x00000000, 0xf764e8d5) And getting the following... Error code 000000d1...
  7. 0LaoyanG0

    Server 2003 Cloning Software

    Use Acronis with Universal restore. This will allow you to drop your image on differen't hardware platforms. This is much better that Ghost.
  8. 0LaoyanG0

    Domain users access non domain based server

    For security purposes it is not recomended to allow access into your domain from the outside. Alternatively you can have your web applications authenticate, behind the scenes, to your domain and run the apps users need. This can be done at the webserver. Sharepoint is pretty good at doing this.
  9. 0LaoyanG0

    Multiple FTP Site

    Create a new Virtual Directory in the IIS Management console. Or, If you totally want to use a new IP, since you will be assigning it a static IP, you can add another IP on the same NIC/TCPip protocol then create a new ftp site and bind the ftp site to the new IP address. All this is done in the...
  10. 0LaoyanG0

    File copy status/filegrowth

    In windows 2003 Server Ent, when I copy a file that's 10GB, copy + paste, the destination file automatically shows 10GB. Even when you check the properties it shows 10GB. Now we all know that it's not 10GB till it's done copying. Is there a reg tweak to change this behavior to only display the...
  11. 0LaoyanG0

    Vista Boot menu

    I am looking for the the F8 function to get to the list of options for Windows "Safe Mode", "Safe Mode Command Prompt" and others. I just want it to come up for a bit and also be able to set which is my default selection. Thanks
  12. 0LaoyanG0

    No Sound from Internet Only

    No sound from the internet" is rather vague. When it comes to mulimedia on the internet there are differen't types of media players. There's of course MS Media Player, Shockwave and many others. In most cases when media is played from the internet it uses one of those players depending on what...
  13. 0LaoyanG0

    Vista Logon

    You have to set the policy for interactive logon. Read the following site: http://www.lockergnome.com/windows/2007/02/28/require-ctrlaltdel-for-logons-in-vista/
  14. 0LaoyanG0

    Vista Boot menu

    On MS Vista, pressing F8 at boot gives you the boot menu. How can I set Vista to always display that screen for at least 30 seconds then go on to a default selection if no user selection? Thanks
  15. 0LaoyanG0

    Open UNC path \\ServerName\ShareName through vbscript

    This sounds simple enough right? OK, here's what I want to do. I am logged in as the local Administrator and I want to open an explorer window using a UNC path. This would be just like if you went to Start|Run and typed in a UNC path to a share. If you did this logged on as local Admin, you...
  16. 0LaoyanG0

    vbscript to remove domain group out of local "Administrators" group.

    Here's my situation. I have a script that works great to remove the "Domain Admins" from my server. What's the problem you wonder..... It works great as long as you are logged onto the domain. My problem is that when I join the domain, I want to immediately delete the "Domain Admins" group from...
  17. 0LaoyanG0

    Delete Domain Admins from local 'Administrators' group on server.

    Here's my situation. I have a script that works great to remove the "Domain Admins" from my server. What's the problem you wonder..... It works great as long as you are logged onto the domain. My problem is that when I join the domain, I want to immediately delete the "Domain Admins" group from...
  18. 0LaoyanG0

    Custom splash screen in VB 6.0

    Here's the reason we wnat to do this.... In a Citrix environment users log on and an initial application runs. This is just so the ICA client launches and the client gets directed/connected to the next available Citrix Server. That works great when the initial application finishes launching...
  19. 0LaoyanG0

    Launch an IE .hta and keeping the window active.

    I actually have tested a script similar that launches the hta and monitors the PID of the instance. It looped constantly checking the PID's existance in taskmanager and relaunched if it was gone (if the user hit ALT+F4). However, users still were able to navigate away from the maximized...
  20. 0LaoyanG0

    Launch an IE .hta and keeping the window active.

    I tested it and yes you're right. Users will be able to click on other items. Thanks for your reply though.

Part and Inventory Search

Back
Top