Jump to content

Cartoonite

Member
  • Posts

    444
  • Joined

  • Last visited

  • Donations

    0.00 USD 
  • Country

    Canada

Everything posted by Cartoonite

  1. If all of your tweaks except this one is working, and they are all being imported from the same place, then it is likely that it is the tweak itself that isn't doing what it is supposed to, rather than a problem with the way in which you are trying to import it. Have you tried manually digging into the registry to see what value is assigned to that key when the install is complete? I have occasionally found tweaks to be mislabeled (saying enable when they should say disable, etc..) and that may be the case with this one. You can also try changing the setting yourself while running a registry monitor to see which key changes when you make the change. Hope this helps.
  2. You will need to determine what device is running your DHCP service. (That's the service that provides your PC with an IP address automatically.) Most commercially avaible router/switch combinations have a DHCP service feature included, so that might be a good place to start. Once you determine that, you can examine the settings on the service to ensure that they suit the needs of your LAN. What it sounds like to me is that, rather than a configuration problem, the DHCP service was turned off for some reason when you booted your PC so you were unable to obtain an IP address automatically. Hope this helps.
  3. Yes, you certainly should be able to ping the router from PC 2. Provided, of course, that you are able to ping it from PC 1, meaning that it has not been configured to discard ICMP traffic. From the sounds of things, PC 2 is properly connected, but either the second NIC or some other settings aren't set up properly on PC 1. As a result, when traffic destined for anywhere other than either of the two NICs in PC 1 is received, PC 1 doesn't know how to route it and it gets lost. Off the top of my head, the only thing I can think of is to try setting the Default Gateway for NIC 2 on PC 1 to its own IP address (192.168.1.1). I'm not entirely sure what the settings should be in this case. If that doesn't work, I suggest trying to enable ICS on PC 1. The Wizard should walk you through step-by-step and configure the appropriate settings as you go.
  4. Sounds to me like what you want to set up is a slightly modified version of XP's Internet Connection Sharing system. Based on your description, I think it should work as you intend. As for the settings, XP's ICS includes DHCP features that will allow you to simply configure the second PC for dynamic addressing. If you want to configure it manually, you can use just about any IP scheme you like. The two cards (second card in first PC, and the card in the second PC) will each need an IP on the same subnet, say 192.168.0.1/24 and 192.168.0.2/24 (x.x.x.x/24 denotes a subnet mask of 255.255.255.0) The default gateway for the second PC would be the IP address of the second card in the first PC. All in all, it would probably be easiest to set up ICS, and let its DHCP features manage those settings for you. That, however, is a decision you will have to make for yourself. Hope this helps.
  5. Is there a way to set it up so that the icons are assigned to a drive type, rather than a drive letter? (ie: Floppy drive use a.ico, harddrives use c.ico and optical drives use f.ico.)
  6. My understanding is: If you use the welcome screen: modify loginui.exe. If you use classic logon: modify msgina.dll. Hope this helps.
  7. Could this possibly mean that Microsoft has gone an entire month without finding something to patch? That truely is "Incroyable!"
  8. I've stayed out of these threads until now largely because I will be the first one to admit that I am far from an expert on this subject. Also, since what I learned was picked up during lectures from which I have no notes and no documentation, I can provide no support for what I have to say. Without trying to pick sides in this sadly volitile discussion, here is my small contribution to the topic: Some programs require the pagefile to run. The way they have been written damands it. If you disable the pagefile, these programs will not run. Period. To me, this suggests that disabling the pagefile is a bad idea. Even if I don't currently run any programs that need it, I can in no way guarantee that I will never want to install one that does. Some programs, especially server applications (Exchange and SQL server, for example) are designed to make use of every bit of memory available. This suggests to me that even if you are running 4GB of physical memory and a large pagefile on top of that, these applications will make use of it. Therefore, by my definition anyway, it is not a waste. I have always left my pagefile alone and have never had any problems. I suspect anyone who does the same will have a similar experience. And finally: In no way is that last point meant to be interpreted to mean that customizing your pagefile settings is a bad idea. I have already stated that I don't know enough on the subject to make that claim one way or the other. Now to go slightly off topic in reference to the last few posts in this thread. @eveyone involved Please remember that everyone is entitled to their own opinion. Also, please remember that if your opinion does not contribute to the topic at hand, you are also entitled to keep it to yourself. Now, could we go back to arguing about pagefiles now please, instead of how much or how little each other knows? Cheers.
  9. You could try booting from a floppy (or CD) to get to a command prompt, renaming the directory and editing boot.ini to from something like this: [boot loader] timeout=30 default=multi(0)disk(0)rdisk(0)partition(1)\WINDOWS [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINDOWS="Microsoft Windows XP Professional" /noexecute=optin /fastdetect to something like this: [boot loader] timeout=30 default=multi(0)disk(0)rdisk(0)partition(1)\WINNT [operating systems] multi(0)disk(0)rdisk(0)partition(1)\WINNT="Microsoft Windows XP Professional" /noexecute=optin /fastdetect I can't honestly say I would expect this to work though since any other files that reference the system files (likely the registry) would still be pointing to the old location. I think the best bet, as people have already mentioned, is to change the path name during installation using WINNT.SIF.
  10. Just to expand on this a little bit, here's a clip from the registry tweaks file that can be downloaded from the sticky at the top of the forum: ;----- Hide My Documents, My Network Places, Internet Explorer Icon on desktop ;----- {20D04FE0-3AEA-1069-A2D8-08002B30309D} My Computer ;----- {450D8FBA-AD25-11D0-98A8-0800361B1103} My Documents ;----- {208D2C60-3AEA-1069-A2D7-08002B30309D} My Network Places ;----- {871C5380-42A0-1069-A2EA-08002B30309D} Internet Explorer ;----- {645FF040-5081-101B-9F08-00AA002F954E} Recycle Bin ;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu] ;"{208D2C60-3AEA-1069-A2D7-08002B30309D}"=dword:00000001 ;"{450D8FBA-AD25-11D0-98A8-0800361B1103}"=dword:00000001 ;"{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000001 ;[HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel] ;"{208D2C60-3AEA-1069-A2D7-08002B30309D}"=dword:00000001 ;"{450D8FBA-AD25-11D0-98A8-0800361B1103}"=dword:00000001 ;"{871C5380-42A0-1069-A2EA-08002B30309D}"=dword:00000001 As you can see, it has all been commented out here, but this should give you an idea of exactly what you need to add to get the effect you want. The only change I want to make is to add the My Computer icon to my desktop, so my reg tweaks file has this: ;----- ;----- Show My Computer on the Desktop ;----- [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\NewStartPanel] "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000 [HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\HideDesktopIcons\ClassicStartMenu] "{20D04FE0-3AEA-1069-A2D8-08002B30309D}"=dword:00000000 Hope this helps. @BlueMe In the future, please use code or codebox tags when posting blocks of code.
  11. Glad to hear it. It is also worth nothing that this is also the first time I have ever been deemed important enough to have my name bolded. I feel so loved!
  12. this one is working on XP pro (Dutch and English) ... For brevity's sake, please use the CODEBOX tags instead of CODE tags when posting large blocks of code.
  13. Click here. Please search. There are already several threads dedicated to this topic. If the one I've linked to here doesn't help you out, add a post there, or check the stickied "registry tweaks" thread at the top of this forum where I've posted links to a few others. Welcome to MSFN.
  14. I take it you are trying to apply this registry tweak during a uA Windows install, is that right? My understanding of the way this particular part of the registry works is that the tweak will only work if used as part of a uA install. It also needs to be imported before a user logs in. Mine is imported at T-12 from cmdlines.txt like so: [HKEY_CURRENT_USER\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Streams\Desktop] "TaskbarWinXP"=hex:0c,00,00,00,08,00,00,00,02,00,00,00,00,00,00,00,b0,e2,2b,d8,\ 64,57,d0,11,a9,6e,00,c0,4f,d7,05,a2,22,00,1c,00,0a,11,00,00,1a,00,00,00,01,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,4c,00,00,00,01,14,02,00,00,00,\ 00,00,c0,00,00,00,00,00,00,46,81,00,00,00,11,00,00,00,46,da,82,08,8f,12,c5,\ 01,0c,59,94,30,21,16,c5,01,e8,ad,35,00,d2,13,c5,01,00,00,00,00,00,00,00,00,\ 01,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,01,02,14,00,1f,50,e0,4f,d0,\ 20,ea,3a,69,10,a2,d8,08,00,2b,30,30,9d,19,00,2f,43,3a,5c,00,00,00,00,00,00,\ 00,00,00,00,00,00,00,00,00,00,00,00,00,5c,00,31,00,00,00,00,00,4e,32,10,62,\ 10,00,44,4f,43,55,4d,45,7e,31,00,00,44,00,03,00,04,00,ef,be,4e,32,7a,38,53,\ 32,6e,08,14,00,00,00,44,00,6f,00,63,00,75,00,6d,00,65,00,6e,00,74,00,73,00,\ 20,00,61,00,6e,00,64,00,20,00,53,00,65,00,74,00,74,00,69,00,6e,00,67,00,73,\ 00,00,00,18,00,36,00,31,00,00,00,00,00,4e,32,10,62,10,00,4a,61,73,6f,6e,00,\ 22,00,03,00,04,00,ef,be,4e,32,10,62,53,32,b1,09,14,00,00,00,4a,00,61,00,73,\ 00,6f,00,6e,00,00,00,14,00,64,00,31,00,00,00,00,00,4e,32,bb,63,13,00,41,50,\ 50,4c,49,43,7e,31,00,00,4c,00,03,00,04,00,ef,be,4e,32,10,62,53,32,51,0a,14,\ 00,36,00,41,00,70,00,70,00,6c,00,69,00,63,00,61,00,74,00,69,00,6f,00,6e,00,\ 20,00,44,00,61,00,74,00,61,00,00,00,40,73,68,65,6c,6c,33,32,2e,64,6c,6c,2c,\ 2d,32,31,37,36,35,00,18,00,42,00,31,00,00,00,00,00,ac,30,68,0c,14,00,4d,49,\ 43,52,4f,53,7e,31,00,00,2a,00,03,00,04,00,ef,be,ac,30,2b,0c,ac,30,68,0c,14,\ 00,00,00,4d,00,69,00,63,00,72,00,6f,00,73,00,6f,00,66,00,74,00,00,00,18,00,\ 52,00,31,00,00,00,00,00,ac,30,38,0c,10,00,49,4e,54,45,52,4e,7e,31,00,00,3a,\ 00,03,00,04,00,ef,be,ac,30,2b,0c,ac,30,38,0c,14,00,00,00,49,00,6e,00,74,00,\ 65,00,72,00,6e,00,65,00,74,00,20,00,45,00,78,00,70,00,6c,00,6f,00,72,00,65,\ 00,72,00,00,00,18,00,48,00,31,00,00,00,00,00,ac,30,40,0c,11,00,51,55,49,43,\ 4b,4c,7e,31,00,00,30,00,03,00,04,00,ef,be,ac,30,2f,0c,ac,30,40,0c,14,00,00,\ 00,51,00,75,00,69,00,63,00,6b,00,20,00,4c,00,61,00,75,00,6e,00,63,00,68,00,\ 00,00,18,00,00,00,10,00,00,00,05,00,00,a0,1a,00,00,00,23,01,00,00,60,00,00,\ 00,03,00,00,a0,58,00,00,00,00,00,00,00,6a,61,73,6f,6e,73,76,70,63,00,00,00,\ 00,00,00,00,8a,d5,6e,06,79,77,56,4d,82,b8,83,61,b7,c9,d7,25,13,59,ab,d6,b3,\ 7f,d9,11,8e,f3,00,50,56,c0,00,08,8a,d5,6e,06,79,77,56,4d,82,b8,83,61,b7,c9,\ d7,25,13,59,ab,d6,b3,7f,d9,11,8e,f3,00,50,56,c0,00,08,00,00,00,00,08,00,00,\ 00,02,00,00,00,b0,04,00,00,01,00,00,00,0b,00,00,00,6c,00,00,00,08,00,00,00,\ 5e,00,32,00,0c,03,00,00,4e,32,80,62,20,00,45,4d,55,53,49,43,7e,31,2e,4c,4e,\ 4b,00,00,42,00,03,00,04,00,ef,be,4e,32,ad,63,53,32,67,0a,14,00,00,00,65,00,\ 4d,00,75,00,73,00,69,00,63,00,20,00,54,00,61,00,67,00,20,00,45,00,64,00,69,\ 00,74,00,6f,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,\ 7c,00,00,00,07,00,00,00,6e,00,32,00,ca,02,00,00,4e,32,82,62,20,00,46,41,49,\ 52,53,54,7e,31,2e,4c,4e,4b,00,00,52,00,03,00,04,00,ef,be,4e,32,ad,63,53,32,\ 67,0a,14,00,00,00,46,00,61,00,69,00,72,00,53,00,74,00,61,00,72,00,73,00,20,\ 00,41,00,75,00,64,00,69,00,6f,00,20,00,43,00,6f,00,6e,00,76,00,65,00,72,00,\ 74,00,65,00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,68,\ 00,00,00,00,00,00,00,5a,00,32,00,54,06,00,00,4e,32,05,63,20,00,4d,4f,5a,49,\ 4c,4c,7e,31,2e,4c,4e,4b,00,00,3e,00,03,00,04,00,ef,be,4e,32,05,63,53,32,67,\ 0a,14,00,00,00,4d,00,6f,00,7a,00,69,00,6c,00,6c,00,61,00,20,00,46,00,69,00,\ 72,00,65,00,66,00,6f,00,78,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,\ 00,00,00,70,00,00,00,01,00,00,00,62,00,32,00,96,06,00,00,4e,32,0e,63,20,00,\ 4d,4f,5a,49,4c,4c,7e,32,2e,4c,4e,4b,00,00,46,00,03,00,04,00,ef,be,4e,32,0e,\ 63,53,32,67,0a,14,00,00,00,4d,00,6f,00,7a,00,69,00,6c,00,6c,00,61,00,20,00,\ 54,00,68,00,75,00,6e,00,64,00,65,00,72,00,62,00,69,00,72,00,64,00,2e,00,6c,\ 00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,56,00,00,00,09,00,00,00,48,00,\ 32,00,92,02,00,00,4e,32,10,63,20,00,4d,50,33,47,61,69,6e,2e,6c,6e,6b,00,2e,\ 00,03,00,04,00,ef,be,4e,32,ad,63,53,32,67,0a,14,00,00,00,4d,00,50,00,33,00,\ 47,00,61,00,69,00,6e,00,2e,00,6c,00,6e,00,6b,00,00,00,1a,00,00,00,00,00,00,\ 00,68,00,00,00,06,00,00,00,5a,00,32,00,ab,04,00,00,4e,32,36,63,20,00,4e,45,\ 52,4f,53,54,7e,31,2e,4c,4e,4b,00,00,3e,00,03,00,04,00,ef,be,4e,32,36,63,53,\ 32,67,0a,14,00,00,00,4e,00,65,00,72,00,6f,00,20,00,53,00,74,00,61,00,72,00,\ 74,00,53,00,6d,00,61,00,72,00,74,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,\ 00,00,00,00,00,7a,00,00,00,05,00,00,00,6c,00,32,00,ff,06,00,00,4e,32,2f,62,\ 20,00,53,48,4f,52,54,43,7e,31,2e,4c,4e,4b,00,00,50,00,03,00,04,00,ef,be,50,\ 32,10,16,53,32,67,0a,14,00,00,00,53,00,68,00,6f,00,72,00,74,00,63,00,75,00,\ 74,00,20,00,74,00,6f,00,20,00,41,00,6c,00,63,00,6f,00,68,00,6f,00,6c,00,20,\ 00,31,00,32,00,30,00,25,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,\ 00,00,76,00,00,00,0a,00,00,00,68,00,32,00,4f,00,00,00,4e,32,b4,63,20,00,53,\ 48,4f,57,44,45,7e,31,2e,53,43,46,00,00,4c,00,03,00,04,00,ef,be,4e,32,b4,63,\ 53,32,67,0a,14,00,36,00,53,00,68,00,6f,00,77,00,20,00,44,00,65,00,73,00,6b,\ 00,74,00,6f,00,70,00,2e,00,73,00,63,00,66,00,00,00,40,78,70,73,70,32,72,65,\ 73,2e,64,6c,6c,2c,2d,36,31,30,30,00,1c,00,00,00,00,00,00,00,7c,00,00,00,03,\ 00,00,00,6e,00,32,00,8b,03,00,00,4e,32,39,63,20,00,53,50,59,42,4f,54,7e,31,\ 2e,4c,4e,4b,00,00,52,00,03,00,04,00,ef,be,4e,32,39,63,53,32,67,0a,14,00,00,\ 00,53,00,70,00,79,00,62,00,6f,00,74,00,20,00,2d,00,20,00,53,00,65,00,61,00,\ 72,00,63,00,68,00,20,00,26,00,20,00,44,00,65,00,73,00,74,00,72,00,6f,00,79,\ 00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,66,00,00,00,04,00,\ 00,00,58,00,32,00,b2,02,00,00,4e,32,3a,63,20,00,53,50,59,57,41,52,7e,31,2e,\ 4c,4e,4b,00,00,3c,00,03,00,04,00,ef,be,4e,32,ad,63,53,32,67,0a,14,00,00,00,\ 53,00,70,00,79,00,77,00,61,00,72,00,65,00,42,00,6c,00,61,00,73,00,74,00,65,\ 00,72,00,2e,00,6c,00,6e,00,6b,00,00,00,1c,00,00,00,00,00,00,00,54,00,00,00,\ 02,00,00,00,46,00,32,00,a2,07,00,00,4e,32,84,63,20,00,57,69,6e,61,6d,70,2e,\ 6c,6e,6b,00,00,2c,00,03,00,04,00,ef,be,4e,32,84,63,53,32,67,0a,14,00,00,00,\ 57,00,69,00,6e,00,61,00,6d,00,70,00,2e,00,6c,00,6e,00,6b,00,00,00,1a,00,00,\ 00,00,00,00,00,a2,00,00,00,60,07,00,00,00,00,00,00,1e,00,00,00,00,00,00,00,\ 00,00,00,00,1e,00,00,00,00,00,00,00,01,00,00,00,01,00,00,00,aa,4f,28,68,48,\ 6a,d0,11,8c,78,00,c0,4f,d9,18,b4,be,01,00,00,60,0d,00,00,00,00,00,00,1e,00,\ 00,00,00,00,00,00,00,00,00,00,1e,00,00,00,00,00,00,00,01,00,00,00 "Toolbars"=hex:11,00,00,00,00,00,00,00 As I mentioned before, this particular hex value sets the Taskbar up the way I like it, so you will need to export this key after setting up your own Taskbar to have it set the way you want. Hope this helps.
  15. This one has been done, please try to use the search function. I did a search for "Quick Launch" and got several threads answering this question, or a variation of it. Here's a few links, hopefully they will help you out. I just don't feel up to explaining it...again. http://www.msfn.org/board/index.php?showtopic=37292 http://www.msfn.org/board/index.php?showtopic=39313 http://www.msfn.org/board/index.php?showtopic=8763 http://www.msfn.org/board/index.php?showtopic=41238
  16. Which reminds me, Fantastic Four is coming out this summer. So, as Johnny would say, "Flame on!" Sorry, I just couldn't resist.
  17. Looks okay to me, but I don't really have much experience with HTJ. This is not the Malware Prvention forum. You may get more enlightened responces from there.
  18. Could be either HKLM or HKCU. Most likely it is a combination of both. I suggesting checking both keys. Might also want to run up-to-date virus, spyware and trojan scans, just to make sure your PC is clean. Plain check boxes in the Startup section of msconfig make me nervous.
  19. I've heard of that solution, although I've never tested it myself. Alternatively, you could throw the following batch script into their Startup folder which is what I do. The only downside is that they need to re-log in order for it to take effect. @cmdow @ /HID set KEY=HKCU\Software\Microsoft\Windows\CurrentVersion\Explorer\MenuOrder\Start Menu reg delete "%KEY%" /f reg delete "%KEY%2" /f exit
  20. There is nothing that gets installed by default. If you are not purposely installing something from these folders, you can likely delete them safely. I personally chose to keep them just in case I should find a use for them.
  21. The $OEM$ folder does not exist on a default Windows XP CD. You will have to create it. It goes at the root of the CD, like so: \ --I386\ -----(Windows files/folders here) --$OEM$\ -----(Your OEM files/folders here) --SUPPORT\ -----(Support Tools) --VALUEADD\ -----(Value added software) Hope this helps. Edit: Yeah, what rikgale said. That's what I get for doing this at work and taking 20 minutes to type a reply.
  22. Most of the time the folders show up when i connect via IP... but i just noticed something weird again; sometimes it works with ip, sometimes it works with hostname.. *Screenie* <{POST_SNAPBACK}> This one is different, anyway. *Shrugs.* You're right though, that's hardly the real issue.
  23. Yes and no. This is the really wierd thing here.. try to follow me here... If I simply rename it by removing any amount of letters from the end of the folder name (i.e. folder named 'Testing' I rename to 'Tes'), the sub-folders still dont show up, this is the case all the way down to 1 letter. And get this... If I remove up to 2 of the 1st 2 letters of the folder, the missing folders still dont show up, BUT if I remove more than 2 they show up! I tested this out on numerous parent dirs of the missing folders and the results were the exact same... all of the parent folder names vary in character length!! (anyone who is experiencing the same problem.. please test this out as Id be very curious to hear if its the same across the board) If I add characters to the beginning, middle or end of the filename or rename it entirely the sub-dirs show up. As soon as you rename it back, however, the same folders disappear again. The results are the same regarless if the folder is renamed from the pc accessing the shares or the host pc itself. What the hell!?!?!?! I agree. "What the hell!?!?!?!" sums this one up perfectly. Made sense to me, but I'm nuts, so that's far from conclusive. I'm running out of ideas on this one. What really drives me nuts is the whole "sometimes it works, sometimes it doesn't" thing. Something that may be worth trying: Connect a PC (or virtual PC) that is running a different OS to the network to see if the missing folders are still missing, or if they display normally. If they work properly with completely seperate OS's, try using Windows XP RTM (Gold) or SP1, to see if that makes a difference. Also, it may be worthwile to try sharing the same folders out from a seperate OS, to see if they are affected that way when browsing from XP SP2 machines as well. I realise that the size of the shares may make this a somewhat impractical test. Hope this helps.
  24. Both Operating Systems have their advantages and disadvantages, but I would have to say that Windows is the more user-friendly of the two.
  25. Few questions for those of you who are affected by this: What OS are the files being shared from? I've been under the impression that all files are being shared from Windows XP SP2, but I would like to confirm this. What OS are the folders not showing up on? I've gotten the impression that this is also limited to Windows XP SP2, but, again, would like it confirmed. Do the files/folders not show up when accessed by any PC, or do they display fine on some, missing on others? If the latter, what OS is being run on the machine where the folders can be seen properly? Is there anything you can think of that the affected folders have in common? (length of name, specific characters in the name, share folder depth, etc...) Will the folder show up if you use a mapped drive when mapping via ComputerName? Will the folder show up if you use a mapped drive when mapping via IP? Will the folder show up if you rename it, as gigabitfx suggested? Will the folder show up if you rename the parent folder? Has anyone contacted MS to see if this is a known issue? (I did a quick search on their support site, but didn't find anything.) I'm fortunate enough to not be experiencing difficulty at the moment, so unfortunately I can't test any of my ideas on my own. Hope this helps, as I would like to know just for myself what the issue is. I'll be sure to come to you the next time I get a phone call saying no one in the office has access to email and I want someone to suggest I have each and every one of them recreate their Outlook profile. *More sarcasm* I'm sure if we snap at each other enough, the problem we're trying to fix will get so fed up with listening to us bicker that it will fix itself just so we'll shut up. *Still more sarcasm* Could we maybe get back to just trying to fix the problem at hand, instead of hurling not-so-subtle insults at each other?
×
×
  • Create New...