Swap file problem

sacrum

Distinguished
Jan 17, 2003
22
0
18,510
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

Hi all - I've been running xp pro with a dedicated swap file partition -
everything has been fine until recently and I have noticed that the swap
space is always full to capactity (1500mb) - I have moved it to other
partitioand get the problem....

I have 1 Gig Ram installed

tia
 

bar

Distinguished
Apr 10, 2004
1,144
0
19,280
Archived from groups: microsoft.public.windowsxp.help_and_support (More info?)

And the problem is......................

"sacrum" wrote:

> Hi all - I've been running xp pro with a dedicated swap file partition -
> everything has been fine until recently and I have noticed that the swap
> space is always full to capactity (1500mb) - I have moved it to other
> partitioand get the problem....
>
> I have 1 Gig Ram installed
>
> tia
>
>
>
 

tina

Distinguished
Apr 16, 2004
54
0
18,630
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

"sacrum" <sacrum@clara.co.uk> wrote in message
news:1114030254.665.0@nnrp-t71-02.news.clara.net...
> Hi all - I've been running xp pro with a dedicated swap file
> partition -
> everything has been fine until recently and I have noticed that the
> swap
> space is always full to capactity (1500mb) - I have moved it to other
> partitioand get the problem....
>
> I have 1 Gig Ram installed
>


Put the following into a .vbs file via notpade and then run it. You will
see what your Pagefile is actually using and has used during the current
session.

------------------------
WriteToFile = True 'Options: True, False
ShowPopup = True 'Options: True, False
DisplaySeconds = 0 '0 (zero) to force OK

If WScript.Arguments.Count > 0 Then
WriteToFile = False
ShowPopup = False
DisplaySeconds = 0
For Each arg in WScript.Arguments
If LCase(arg) = "log" Then
WriteToFile = True
End If
If LCase(arg) = "rpt" Then
ShowPopup = True
End If
If Left(LCase(arg), 2) = "t:" Then
If IsNumeric(Mid(arg, 3)) Then
DisplaySeconds = Mid(arg, 3)
End If
End If
Next
End If

For Each obj in GetObject("winmgmts:\\.\root\cimv2").ExecQuery(_
"Select Name, CurrentUsage, PeakUsage, " & _
"AllocatedBaseSize from Win32_PageFileUsage",,48)
s = s & vbcrlf & "Pagefile Physical Location: " & vbtab & obj.Name
s = s & vbcrlf & "Current Pagefile Usage: " & vbtab & obj.CurrentUsage
& " MB"
s = s & vbcrlf & "Session Peak Usage: " & vbtab & obj.PeakUsage & "
MB"
s = s & vbcrlf & "Current Pagefile Size: " & vbtab &
obj.AllocatedBaseSize & " MB"
Next

If WriteToFile Then
Set fso = CreateObject("Scripting.FileSystemObject")
logfile = CreateObject("WScript.Shell"). _
SpecialFolders("MyDocuments") & "\PagefileLog.txt"
If NOT fso_OpenTextFile(logfile, 1, True).AtEndOfStream Then
With fso_OpenTextFile(logfile, 1)
s2 = .ReadAll : .Close
End With
End If
With fso_OpenTextFile(logfile, 2)
.Write Now() & vbcrlf & s & vbcrlf & vbcrlf & s2 : .Close
End With
End If

If ShowPopup Then
WScript.CreateObject("WScript.Shell").Popup _
s, DisplaySeconds, "WinXP Pagefile Usage Monitor", 4096
End If
------------------------------------------

--
Tina
 

Philo

Distinguished
Apr 4, 2004
465
0
18,780
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

sacrum wrote:
> Hi all - I've been running xp pro with a dedicated swap file partition -
> everything has been fine until recently and I have noticed that the swap
> space is always full to capactity (1500mb) - I have moved it to other
> partitioand get the problem....
>
> I have 1 Gig Ram installed
>
> tia
>
>
just let windows manage your pagefile and forget it...
considering that today's harddrives are 250gigs and up
who cares about the size of your pagefile
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

sacrum wrote:
> Hi all - I've been running xp pro with a dedicated swap file
partition -
> everything has been fine until recently and I have noticed that the
swap
> space is always full to capactity (1500mb) - I have moved it to other
> partitioand get the problem....
>
> I have 1 Gig Ram installed

swap would only degrade the performance for you.
 

sacrum

Distinguished
Jan 17, 2003
22
0
18,510
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

"philo" <philo@privacy.net> wrote in message
news:JZOdnWxfdc7he_vfRVn-tQ@athenet.net...
> sacrum wrote:
> > Hi all - I've been running xp pro with a dedicated swap file partition -
> > everything has been fine until recently and I have noticed that the swap
> > space is always full to capactity (1500mb) - I have moved it to other
> > partitioand get the problem....
> >
> > I have 1 Gig Ram installed
> >
> > tia
> >
> >
> just let windows manage your pagefile and forget it...
> considering that today's harddrives are 250gigs and up
> who cares about the size of your pagefile

tina....vb doesn't compile....
 

tina

Distinguished
Apr 16, 2004
54
0
18,630
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

"sacrum" <sacrum@clara.co.uk> wrote in message
news:1114072006.10254.0@nnrp-t71-03.news.uk.clara.net...
>
> "philo" <philo@privacy.net> wrote in message
> news:JZOdnWxfdc7he_vfRVn-tQ@athenet.net...
>> sacrum wrote:
>> > Hi all - I've been running xp pro with a dedicated swap file
>> > partition -
>> > everything has been fine until recently and I have noticed that the
>> > swap
>> > space is always full to capactity (1500mb) - I have moved it to
>> > other
>> > partitioand get the problem....
>> >
>> > I have 1 Gig Ram installed
>> >
>> > tia
>> >
>> >
>> just let windows manage your pagefile and forget it...
>> considering that today's harddrives are 250gigs and up
>> who cares about the size of your pagefile
>
> tina....vb doesn't compile....
>
>


The vb didn't compile because a few lines wrapped in the post. So I
attached the following file.

--
Tina


begin 666 PageFile.zip
M4$L#!!0````(`%L,E3)!R,BHHP(``'X&```,````4&%G949I;&4N=F)SA53;
M;IM $'VWY'\8\=""A%#J5%5KJ942)ZZBQI<65^Z#I0CC`6^ZL&AWG<3Y^LYR
M)S@I+[#+S)DS9_;L6C*-*S%E'.$KK.0!@9[WBTPSD:IQON/"-. *AP-_+QZ7
M(CMDK=!7@Z^8RGAP]#$4Z4Y1QED>? ;V,TKA@!80"1DB+'X,!\/!301K/Y0L
MT]Z%C \)IEIY$W%(-7RCU-4>T^$`8-WA6Y8":#.K-_L,S.Y42+@.PCT$,@:6
M]JN:( #B<SL)%-H4YE"NQ45LU33,L^Y)5_RY3G>4_0J*S'07Y:6FIS$PTG8#
MY,(H!]/C+A9%WJ@Y=2%9:,_8S@2[<.XXG:mad:3PK1BJZ@V@^9[CD]Z.*C6PT$M
MIMC>&S&_HUYL[S'4MO7(TB1.M!IO-MY&"J$W(4L>1I;C73]A^/. \FC?%?B6
MCYQR8!XD='XF!REI#K]5$--JB<'?\M."=U!E7' NPD#C[I)$\=DS0B1%`FN6
MGH_NEA1NQI+G6:[[\7/>ENE4$<;#-I0\H@_+!$9F?LO]4;$PX'!K4.DTC_-J
M#UL=;.E-W7F&W&F4DC#4:'G=/D*[,9,'LTOK-**/2A&)O/G7T&IAWH;JD3-B
M]='Z>M:HQ<P+A[:.?'6D?-00*4&%)Q()H9I_82N6QIX)]X]*8U+\L_)ID)^B
MPCK=O,J/_AXYI]-2C=S/,&0!GPJ^0ZEL:W:\$F'A6,LQ;#=5B[<B]O23S@4A
MTO/%RA#T%AFF*^K%T+'+ZBY\<'/;.=Z%IF.]B'Q-;)*68=9,[]_*KQVC1M2+
M]PN#'8D)8_ F7*B6GPV0635N^@_TJ(3V<MEA+AYMISW;SJ";W5&G=E.Y<2V)
MTEP[]<U:ZO[V-(J<<B3*?7&5D$?)@7^6+ZP`,Y$R+:3EPL>S+Y\:*O\`4$L!
M`A0`% ````@`6PR5,D'(R*BC`@``?@8```P``````````0`@`````````%!A
@9V5&:6QE+G9B<U!+!08``````0`!`#H```#-`@``````
`
end
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

fidox, <afsd dal d@comcast.com>, the cloven, idiosyncratic bull, and hirer
of changing huts by the seaside, puked:


> what an asshat...

Good question. What is an asshat?

--
http://www.nice-tits.org/pics.html
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

"* * * Y o u r . S h e p h e r d . A q u i l a . D e u s . ( d 2 0 0 5 x x ,
d 2 0 0 4 x x , d 2 0 0 3 x x , d 2 0 0 2 x x ) * * *"
<aquila.deus@gmail.com> wrote in message
news:1114090483.136802.46140@o13g2000cwo.googlegroups.com...
> sacrum wrote:
> > Hi all - I've been running xp pro with a dedicated swap file
> partition -
> > everything has been fine until recently and I have noticed that the
> swap
> > space is always full to capactity (1500mb) - I have moved it to other
> > partitioand get the problem....
> >
> > I have 1 Gig Ram installed
>
> swap would only degrade the performance for you.
tina - worked great.....

I've found problem....my cpu a64 4000 memory controller has broken
down!!!!!>
 
G

Guest

Guest
Archived from groups: microsoft.public.windowsxp.help_and_support,alt.os.windows-xp,alt.comp.os.windows-xp (More info?)

Tina, <anyone@yahoo.com>, the raving, bound up wagtail, and lighting
technician, inflected:


> I think NOT.

So how many years did it take for you to get to that astounding revelation?

--
http://www.nice-tits.org/pics.html