 |
 |
Index ‹ Windows XP ‹ Windows XP
|
- Previous
- 1
- Windows XP Support >> Problem Viewing Compact Flash Card Contents On WinXPIt used to be that, when I'd put the compact flash card from my
digital camera into my card reader, Windows XP (all security updates
installed) would pop-up with a box that said, "Windows can perform the
same action each time you insert a disk or connect a device with this
kind of file: Pictures
What would you like to do?
Below is a box that used to show the different programs I could use to
open the files or the options to use Windows Explorer to view the
files on the disk.
Now that box is blank; nothing shows up in it. I can't figure out
why, either. Has anyone had this happen before? If so, how did you
fix it?
Thank you.
Kim/Dreamspinner3
Parrot Nannies of Minnesota Inc:
http://parrotnanniesmn.com/
Personal Homepage: http://members.tripod.com/dreamspinner3/
- 2
- Windows XP >> Can't view online 3d tour...I can't view any online 3d tours, like they have at=20
apartment and home sites. The error I get says this:
You must enable Java in your browser to see this 360=B0=20
image. =20
The file extension for the 3d virtual tours is .mvr=20
Can anyone tell me what to do to see these????
- 3
- Windows XP Hardware >> Microsoft Keyboard F Lock DefaultHey, Does anyone know how to change the default F Lock
Function of a MS Wireless MultiMedia Keyboard (1.0A) from
off to on? This simple key is very annoying to use, as
the function keys are unable to be accessed without first
turning that on.
- 4
- Windows XP >> Question about.....oe removed access.....Hi
Friend of mine send me an attachment and when i try to
open it with microsofts outlook expr. it says "oe removed
access to the following unsafe attacment in your mail".
Is this bad? Should i try to open it?Should i warn my
friend?......
Thanks in advance for any info
Mike
- 5
- Windows XP Hardware >> No Video After XP StartsAll of a sudden, I get no video after XP starts up. Monitor displays Signal
Error. Monitor is known good. Was tooling along working in Word and all of
a sudden monitor went blank and then displayed Signal Error. Have video in
Safe Mode. Device manager shows no errors or problems with adapter.
Adapter is ATI X700.
- 6
- Windows XP Hardware >> Fine working CDRoms in device manager shown in the unknow group instead of CDROM-groupHello,
I installed a week ago a new dvd-burner after putting out my 4x4
cd-burner(HP). All was fine. 2 days later i checked in the device manager
and noticed the DVD-Rom (Pioneer 106s) and the DVD-burner (NEC 1300) are
showing up as unknown devices. Properties says they are Class: unknown and
Factory: general cdrom stations, Status: working correct. Ok they work well
but this is annoying me. So i looked into the registry and found nothing
obvious that could change this.I did find the HP 4x4 burner still in the
registry (that was gone now, and that did have still Class CDROM, but the
Pioneer and NEC hadd Class *empty* . So i am pretty sure something went
wrong when i first booted up with the NEC and without the HP Of course i
tried to uninstall the drives (duh) but they come up again in unknown
devices. Last resource was windows recovery but the date was too long ago
now, so it was not an option. Using Windows XP. Have been searching for
hours on Google, nothing. Only thing i did try in the registry was delete
all HP references, no succes.
Ok, so the question is, which entries in the registry or inf files do i
change/remove for a reset?
TIA
- 7
- Windows XP Network >> NT Authority prompts shutdownMy bro's notebook has this problem: Everytime he connects
to the Internet, he gets a dialog box by "NT
Authority/System" prompting him to shut down.
The reason given is that "the Remote Procedure Call (RPC)
service terminated unexpectedly".
He can't update online since he always gets bootted when
online.
Thanks in advance!
BTW: Windows XP Pro came with his notebook.
- 8
- 9
- 10
- Windows XP Network >> routing traffic between network card and wirelessHello,
I have a PC with one network card (LAN) and a wireless card.
I would like to route some HTTP traffic arriving from the LAN card to
the wireless connection (so have both connections running at the same
time).
Do I need some sort of routing or proxy software to achieve this?
Thanks,
Seb
- 11
- Windows XP MovieMaker >> Timeline...Maybe I'm doing something wrong.....
If I add a clip in the middle of a movie, all the clips to the right of it
move to the right to make room. However, the text in the separate timeline
does not move with it. I have to go back and allign all of the text.
Is there a way to move everything in sync?
Dick
- 12
- 13
- Windows XP Support >> Ieee1394 networking + activation statusYesterday I connected my newly acquired notebook with my desktop PC, using
Firewire cable. But after I did this, my desktop PC (with Box Windows XP)
informed me I had to re-activate Windows due to "extensive changes in the PC
configuration". But I haven't done any changes -- all I did was changing IP
address three times for my firewire connection. Can this affect activation
status? Will my PC make me re-activate Windows again, if I use the firewire
port for my Camcorder and then re-connect my notebook?
Thanks in advance for any advice.
- 14
- 15
|
| Author |
Message |
jcmcmahon

|
Windows XP >> Vista's mklink for XP?
As some of you may know, NTFS reparse points have all that is needed to
implement file symlinks on Windows XP:
http://wesnerm.blogs.com/net_undocumented/2006/10/symbolic_links__1.html
As you can see in that blog entry, there is utility called "fsutil":
http://www.microsoft.com/resources/documentation/windows/xp/all/proddocs/en-us/fsutil.mspx?mfr=true
that explotis that.
However, I was wondering if there is any "simpler" utility besides fsutil to
do that?
Here's why I ask, in case you have something to suggest:
I work (among other things) in an open source project. We use svn and most
developers are linuxers.
I was assigned the task of porting the build system to CMake. While on that
I couldn't help but to try fixing some longstanding issues.
One of the most annoying ones is this: the svn tree structure is different
from the build tree structure (a bash script is run to create the build-tree
out of the svn-tree).
The only "real" fix here is to unify the svn and build structures, but this
is so far from trivial (for a number of reasons) that is just impractical
for the time being.
However, along the discussion an interesting "hack" came about: create the
build-tree as a "shallow" rearrangement of the files in the svn-tree via
symlinks. This is trivial in posix... it is also equally trivial in Vista
thanks to mklink, but is not in XP and we need to support all three
platforms (being a platform indepenent open source project).
I posposed to use hardlinks, but that makes things complicated as I need to
make sure the "link" in the shallow folder doesn't outlive the "original"
file in the svn folder (otherwise it will silently go out of sync). Some svn
operations (revert, rename, etc) in the working folder could break the hard
link silently leaving an outdated source in the shallow build tree.
I know XP developers could have "fsutil" installed, and use it to generate
the shallow build tree with real symlinks, but I don't see how that can be
integrated into a transparent and platform-independent build enviroment
(which is the goal).
TIA
Fernando Cacciola
SciSoft
http://fcacciola.50webs.com
Windows XP2
|
| |
|
| |
 |
| |
 |
Index ‹ Windows XP ‹ Windows XP |
- Next
- 1
- 2
- Windows XP Support >> converting files into GIFsIs there anyway in xp to convert a file into an animated GIF?I have them in
WMV but i can convert them into several other types of files if that is
needed then convert them again into GIF format. Any help would be appreciated.
- 3
- customize >> Can I get rid of automatic update programs?Lately every piece of software I install seems to add a
program that is launched automatically when I create a
dial-up connection. They all check for updates to their
product and tell me about it. I want to get rid of these.
They slow down my computer, pop up windows, and use up my
limited dial-up network bandwidth.
Does anyone know how they gain control when a dial-up
connection is created? Is there a registry key concerning
this?
- 4
- 5
- 6
- Windows XP Setup >> XP Install ErrorsI just built a new computer and I'm trying to set up
windows xp onto it. However, during the set up phase, my
windows xp freezes around the same point, every single
time. I tried switching CD rom drives to see if it was a
drive error. I also tried making a copy of the CD. I also
installed windows xp on another computer so i'm sure the
CD is working. But why on this specific computer does it
freeze. Here is some hardware.
300 psu
ak31a mobo
256 pc2100 ddr ram
ati 7000
1.4 tbird
Why does it frreeze on this computer?!!
someone help, thx
- 7
- 8
- Windows XP Support >> DOS FILES under XPA client of mine is trying to run an old DOS program migrating to a
new Windows XP system. Last week their test was working fine. Now
the program is doing some initializing but not finishing it and
stopping. They say they haven't changed anything, and they have tried
it several times, including rebooting. From the error message they
are getting and the place the program is bombing out, they need more
DOS FILES available. The old "FILES=xx" in DOS. Is there a way to
set the number of files for a DOS program under XP?
---
Replace you know what by j to email
- 9
- 10
- 11
- 12
- Windows XP >> High refresh on explorerProblem: in a mapped drive (explorer) every 1 second thers a refresh; i mean,
the content of this directory is constantly refreshed: it seems like a
pression of F5 every sec. Is it possible to stop it?
- 13
- Windows XP Security >> Search Beta Test :secure login without PasswordHello,
We are now starting a limited public beta of a new security program
for Windows named "NaturalLogin".
The program can use one or more hardware devices (such as standard USB
storage keys) and/or custom questions to enable a multi-factor (2 or
more) login.
We are looking for serious beta testers with the following
configuration:
- Windows NT, 2000 or XP;
- Not connected to a domain manager (stand-alone PC or
workgroup);
- At least one USB removable storage device.
If you are interested please register on our Web site at:
http://www.palcott.com/betatest/
The beta testers who will fill a valid report will receive a discount
code to purchase the final version of Natural Login at a very low
price.
For more information about NaturalLogin or about our company:
http://www.palcott.com
To read the online documentation:
http://www.palcott.com/betatest/proddoc/
Thank you for all your comments,
Philippe Lumbroso
BetaTest Program - Palcott
plumbroso@palcott.com
www.palcott.com
- 14
- Windows XP Support >> Hard Disk used space ?I have a 200 gig slave hard drive. I recently deleted 60 gig of files. The
total of all files on the disk now = 40 gig. However, the properties for this
drive show 100 gig used. I have defraged and error checked the disk with no
change in the discrepancy. Is there anything I can do to correct this without
reformatting the disk?
--
Thank you for your help.
- 15
- Windows XP >> Dual boot convert to ntfsThere is 4 computers (workstations) at the shop that are dual boot I suppose
because of buying upgrade versions of XP Pro. The other OS is 98 which I know
will not run on ntfs. So the question is if I use command prompt safe mode to
convert to ntfs what will happen to the 98 Os and programs installed on it.
Will it be deleated or be unknown amount of corrupt data taking up space on
hard drive. Or is there a way to delete 98 before converting to ntfs.
Thanks
|
|
|