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 TouchToneTommy 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: *

  • Users: Techie64
  • Content: Threads
  • Order by date
  1. Techie64

    Event logs for scans/pings/breakins

    What tool can I use that logs when my PC is accessed by another? For example, a program that logs if I was pinged, or if one of my ports was scanned, or if someone tried to get into my PC. I can't find this in the event logs. I'm not sure if Port Reporter or PortQuy provides this or not. Thanks.
  2. Techie64

    getting input from command line

    What's the command for getting input at the command line as opposed to Inputbox, example FileInput = Inputbox("Enter the path and filename you wish to open:") createobject("wscript.shell").run FileInput Thanks.
  3. Techie64

    restrict sending permission in Outlook 2003

    I want to restrict User A from sending email to anyone in the address book. Under User A's properties in Active Directory (AD), I can restrict who they can receive email from in Exchange General -> Message Restrictions. But I can't find where to restrict who they can send to in either in AD or...
  4. Techie64

    Lock down Outlook 2003 customizations

    Hi. After making changes to the toolbars and commands, I want to lock it down to where the user can't undo anything. As it stands, after I make the changes, I can right-click, choose Customize and bring everything back. I don't want them doing this. I also have the configuration file saved in...
  5. Techie64

    email logs in Outlook 2003

    It is my understanding that email logging is available. How can I check a PC to see who the user received email from or sent email to, even if they deleted mail? Where is there a log file on the PC containing info where email was sent/received that I can save and review?
  6. Techie64

    Looking for Office 2003 configuration file

    Hi. After making changes to Outlook 2003 (options, customize), what and where is the file that has all the changes saved? I need this in case I want to revert back to the original settings. Thanks.
  7. Techie64

    fairly easy script?

    Can someone provide a script example of how to open/run a file, to include the path? For example, if the path is C:\program files\designs\file.txt, how do I tell the script to open it? Also, will this work for all executable extensions (.exe, .cmd, .txt, .vbs, etc)? Thanks.
  8. Techie64

    Script for Net Send

    Hi. In Windows XP, I want to create a user interface in VBScript that compliments the NET SEND command. This is what I have so far: Set objShell = Wscript.CreateObject("WScript.Shell") Comp2Reach = InputBox("Enter in Computer name.") Message2Send = InputBox("Type your message.") objShell.Run...
  9. Techie64

    IE script needs refining

    Below is a simple script that will open the Microsoft home page. You can modify the toolbars' values to display or hide as you see fit. Can someone help with the toolbar buttons? Even though the option exists to display or hide the entire toolbar, is there a way to display only certain toolbar...
  10. Techie64

    Disable folder access on Start menu

    On XP Pro, if you click Start, and double-click any folder in the Start Menu, it will open a window of the folder. How can I disable this? There are files in the folders that I want users to access, but only by clicking Start --> Folder, and letting the folder expand to show the files...
  11. Techie64

    vbscript to hide code

    Accidentally cross-posted to another forum. Sorry. So, Can a vbscript be made into a stand-alone executable like a C++ program? This is for the purpose of hiding the code. Is this possible, or will I need to use another program to call the script? Thanks.
  12. Techie64

    vbscript to hide code

    Can a vbscript be made into a stand-alone executable like a C++ program? This is for the purpose of hiding the code. Is this possible, or will I need to use another program to call the script? Thanks.
  13. Techie64

    renaming computer in Active Directory; getting error

    OK. The script does work. I checked the renamed computer in Active Directory. But how do I stop the error from generating? Set objOU = GetObject("LDAP://OU=Compute,DC=Site,DC=Com") intReturn = objOU.MoveHere _ ("LDAP://CN=Computer1,OU=Compute,DC=Site,DC=Com", "cn=Computer2") Line: 3...
  14. Techie64

    modifying XP folder permissions

    Would like to place an executable C++ program in the startup folder that will modify folder permissions of the current user. Assuming the user is called 'John', and the folder with permissions to be modified is called 'Reports', how is this done? For example, once John logs in, how can I modify...
  15. Techie64

    trying to reboot my PC with dev-cpp

    #include <dos.h> void main() { union REGS inr, out; int86(0x19, &inr,&outr); } When I compile, it errors at union REGS inr, outr, saying "aggregate 'REGS inr' has". Am I missing something? Also, what different parameters are available for int86? I'd like to logoff or shutdown the system as...
  16. Techie64

    Disable folder access on Start menu

    Using server 2003 and XP workstations. I've created a profile on the server that contains folders in the Start Menu that will expand when the mouse goes over the folder. If you double-click a folder in the Start Menu, it will open a window of that folder. How can I disable this? There are files...
  17. Techie64

    Disabling folder access on Start Menu

    If you click Start, and double-click any folder in the Start Menu, it will open a window of the folder. How can I disable this? There are files in the folders that I want users to access, but only by clicking Start --> Folder, and letting the folder expand to show the files. Also, if there it...
  18. Techie64

    reading a protocol map

    Can someone help me find information on HOW to read a protocol map, such as the one located here? http://www.javvin.com/map.html I understand the OSI model and what happens on each layer. I've also seen a few protocol maps, but it's a little confusing to see the flow of data at each layer, in...
  19. Techie64

    need script to display info in desktop

    I need help in writing a script for XP pro machines (batch, NT script, or VBS) that will display any of the following on the desktop when the user logs in: the computer name (preferred) the user ID IP address the time logged in I prefer the computer name to be displayed, but the others would...
  20. Techie64

    How to read a protocol map

    Hi. Where can I find information on HOW to read a protocol map? I understand the OSI model and what happens on each layer. I've also seen a few protocol maps, but it's a little confusing to see the flow of data at each layer, in a practical sense. For example, if I click on a web link, or copy...

Part and Inventory Search

Back
Top