windows-xp

How can I get windows explorer to “browse to next folder”? (vbscript/batch etc…)

馋奶兔 提交于 2020-01-06 06:09:27
问题 I use the basic windows explorer to browse a large collection of images. I have a very well organised group of folders and I don't need/want any of the extra functionality of photo organisers such as picasa etc... The only drawback is: I'd really like to be able to browse from one folder straight into the next, without having to click back and choosing the next folder. So my question is, how could I do this in the smoothest way?! I'm guessing I could use a combination of some script and then

How to delete log file after a week?

牧云@^-^@ 提交于 2020-01-06 02:51:25
问题 I have scheduled a batch job to run every 4 hour to fetch latest records from database. Also I'm maintaining log file which will be updated whenever batch job runs. In order to compensate storage memory I need to delete log file every week. I had tried to solve the task with Batch file to delete files older than N days. In my case file log files will be updated every 4 hours. 回答1: It is not advisable to delete the entire log file on which lines are appended regularly as this results in losing

Error from cppFunction(Rcpp) under R 15.2 Windows XP [duplicate]

£可爱£侵袭症+ 提交于 2020-01-05 08:22:31
问题 This question already has answers here : How to get Rcpp to work in R on a Windows XP platform? (3 answers) Closed 6 years ago . When I've called : cppFunction(' int add(int x, int y, int z) { int sum = x + y + z; return sum; }' ) Error with below message occured, anyone have meet similar problem ? Any clues how to interprete this message ? g ++ -I"D:/PROGRA~1/R/R-215~1.2/include" -DNDEBUG -I"D:/Program Files/R/R-2.15.2/library/Rcpp/include" -O2 -Wall -mtune=core2 -c filed946a0620c7.cpp -o

Missing processor/memory counters in the Windows XP Performance Monitor application (perfmon)

梦想的初衷 提交于 2020-01-05 03:51:08
问题 Perfmon is a Windows utility that helps the developer to find bottlenecks in his applications, by measuring system counters. I was reading a perfmon tutorial and from this list of essential counters I have found the following ones on my machine: PhysicalDisk\Bytes/sec_Total Network Interface\Bytes Total/Sec\nic name But I haven't found the following counters nowhere: Processor\% Processor Time_Total Process\Working Set_Total Memory\Available MBytes Where do I find them? Note that my Windows

eclipse run configuration- program does not exist - but it does

纵饮孤独 提交于 2020-01-04 19:47:41
问题 just what the heck is it? the program is there right in the projects folder. it cant seem to detect its own project folders debug. i am using posix style paths for cygwin on windows. it compiles and builds the exe fine. now it cant auto detect the exe in the projects workspace. I had even tried adding the project folder path to the include settings. both in windows and posix style . but neither does that show up in the project explorer nor does it work. earlier i tried using gnu style paths

Is JDK8 compatible with Windows XP? [closed]

倾然丶 夕夏残阳落幕 提交于 2020-01-04 08:23:10
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 5 years ago . I found it is possible to install JDK8 on Windows XP (to avoid install error - we have to change jdk-8u11-windows-i586.exe file with some HEX editor (for example free XVI32) and change string RegDeleteKeyExA with RegDeleteKeyA filling zeros instead two last letters). But I wonder if the JDK8 will work without

How to stop initial form maximising when run as startup RDP program?

杀马特。学长 韩版系。学妹 提交于 2020-01-04 06:32:15
问题 The startup form in my VB6 app is behaving strangely when started in a Terminal Services (Remote Desktop) session, with both the host and client being XP Pro machines. The form is meant to be centered but it actually maximises and its content goes to the top left and it looks very strange. Note, this only happens when the app path is used for the "Start the following program on connection" field under the Program tab in the RDP client. Apparently there is a solution if you are running Server

Embed Windows XP Theme in C# Winforms application

落花浮王杯 提交于 2020-01-04 02:56:08
问题 I have a legacy C# Windows Forms application with the layout designed on the Windows XP default theme. Due to the need to distribute it as a Citrix application, the application now looks like as a Classic Theme application, because Citrix discourages the use of the Theme system service. So, now I don't want to depend anymore on the Themes system service, but keep the Windows XP default Theme design, even on Windows 7 computers (Citrix server is a Windows 2008 R2 computer). Is there a way to

how to apply substring command to double percent variable in XP cmd scripts?

有些话、适合烂在心里 提交于 2020-01-03 14:19:12
问题 here is the example how you do it with normal variables: SET _test=123456789abcdef0 SET _result=%_test:~-7% ECHO %_result% :: that shows: abcdef0 But what to do with variables with double percent at the begin (like %%A ), variables like this are needed in for loops: FOR /D %%d IN (c:\windows\*) DO ( echo %%d ) this works, but: FOR /D %%d IN (c:\windows\*) DO ( echo %%d:~-7% ) simply copies :~-7 into the echo command 回答1: The replace and substring syntax only works for variables not for

how to apply substring command to double percent variable in XP cmd scripts?

◇◆丶佛笑我妖孽 提交于 2020-01-03 14:19:10
问题 here is the example how you do it with normal variables: SET _test=123456789abcdef0 SET _result=%_test:~-7% ECHO %_result% :: that shows: abcdef0 But what to do with variables with double percent at the begin (like %%A ), variables like this are needed in for loops: FOR /D %%d IN (c:\windows\*) DO ( echo %%d ) this works, but: FOR /D %%d IN (c:\windows\*) DO ( echo %%d:~-7% ) simply copies :~-7 into the echo command 回答1: The replace and substring syntax only works for variables not for