topbanner_forum
  *

avatar image

Welcome, Guest. Please login or register.
Did you miss your activation email?

Login with username, password and session length
  • Monday June 23, 2025, 9:39 am
  • Proudly celebrating 15+ years online.
  • Donate now to become a lifetime supporting member of the site and get a non-expiring license key for all of our programs.
  • donate

Recent Posts

Pages: prev1 ... 61 62 63 64 65 [66] 67 68 69 70 71 ... 118next
1626
But that could take a while as he (according to Prince/TAFKAP/?) should be partying like it is 1999?

 :P
1627
Living Room / Re: If Wikipedia existed back in the DOS era
« Last post by Shades on July 13, 2013, 01:25 PM »
You will find some good company here then  ;)

Even if I include myself  ;D

(my heritage: Commodore 64, Commodore Amiga (all models except 3000 and 4000), Acer PC (286) and after that only white boxes (ranging from AMD 586 to Intel i7))
1628
Living Room / Re: Very thin hard disks
« Last post by Shades on July 13, 2013, 01:16 PM »
If you would create a pendulum of hard disk platters and you would hang it outside, the wind will play a nice harmonic sound/song (and you would make the job of the NSA easier as all your data is out there in public... ;D)
1629
Living Room / Re: Very thin hard disks
« Last post by Shades on July 13, 2013, 01:13 PM »
It is glass that is not supposed to alter its shape in any way or form when the temperature changes.

Glass that is used in Windows of old buildings tends to warp as it has been subject to gravity for all these years it has been in vertical position. I'll guess that ordinary glass would also warp when spinning around between 5400 and 10000 RPM (speeds of most hard drives).

1630
And she's wearing a coat with a zipper up high!


Those activists of today...    :P
1631
Living Room / Re: $250,000 Prize for Human-Powered Helicopter
« Last post by Shades on July 13, 2013, 11:06 AM »
Amazing feat! And a good example of why more people should study more engineering!

1632
Living Room / Re: This Just in: From the You Gotta be Shitting Me Dept.
« Last post by Shades on July 10, 2013, 08:29 PM »
i can relate to that feeling, yesrs ago i was driving in a military car doing a rather large postal run. While waiting for a traffic light, benind two other cars, a truck pulling a tank with 20.000 liter of milk though the traffic light was green. My car took the real beating, the two cars in front of me were totalled as well. And everyone involved were practically ignoring me during the form filling. Even the military police did this, making me wait for 1.5h it took for somebody from my base could pick me up. The wreck of the car i was driving was treated better than me.
1633
Living Room / Re: What is safer for data -- a hard disk or a blue ray disc?
« Last post by Shades on July 09, 2013, 10:49 PM »
Decent quality, slow burned disc´s that are kept in their box in a dry, dark place at a constant temperature do last a long time. Here in Paraguay disc´s are not that great, mainly because of the shitty quality of the players. Getting a disc to work here is a crap shoot. I have 8 DVD burners here and none of the disc I have burned over time work at any given time in any given player.

This is so ff-ing frustrating that I have abandoned this whole tech...until I could lay my hands on a DVD burner that came from the Netherlands. With that drive all discs work all the time. Depending on where you are, and the quality of the reader you can get, disc´s could be an option.

Maybe it would even be a good idea to flip hard disc´s that are in storage every 6 months or so, just to be sure gravity has not too much effect on the (grease of the) bearrings. But in any case, hard disc´s would be my preferred storage medium.

Support for SCSI drives is less of a problem than for IDE drives, It is often easier to get a separate SCSI controller, while getting a separate IDE controllers is a lot harder to get.  As onboard IDE controllers were adequate in most cases, the need for separate IDE controllers is/was practically eliminated.

I only know about soundcards, back when Windows 3.11 was king, that came with a separate IDE controller, which were only useable if you had the IRQ´s to spare...on your motherboard with ISA ports! SCSI controllers at least progressed... ;D
1634
General Software Discussion / Re: Log CPU and memory usage
« Last post by Shades on June 25, 2013, 04:51 PM »
The CSV output format was chosen, as one can check these easily in Excel/LibreOffice. However there are three 'ConvertTo-...' options more: XML, HTML and TXT.

Just letting the OP know.
1635
General Software Discussion / Re: Connection Conundrum
« Last post by Shades on June 24, 2013, 08:03 PM »
Did you try the hints and tips from this link (answers.microsoft.com)?
1636
(Unfortunately, I have so far been unable to get these add-ins to work. This may be because of conflicts with the 64-bit OS.)

I think you may need to use the add-in that matches your Word or One-Note installation, not necessarily the OS.  In other words, if you have 32-bit Office installed on a 64-bit OS (which is I think is the common configuration even on a 64-bit OS), you should install the 32-bit Add-in.


Microsoft warns agains the use of 64-bit Office versions. They imply that unless you have an absolute reason to use a 64-bit Office version you should download the 32-bit one. This warning was not readily but quite accessible when I downloaded their trial Office 2010 version at the time.

I'll guess that this warning is still valid till this day.

Here's the screenshot I made that day:
image001.gif


1637
General Software Discussion / Re: Log CPU and memory usage
« Last post by Shades on June 24, 2013, 02:20 PM »
As a PowerShell beginner and with the help of a PowerShell IDE, I was able to conjure something rudimentary up.

The Mission
Find 5 running processes sorted on highest CPU load and their use of RAM (working set, not private memory):

The result
Get-Process | Sort -Property CPU -Descending | ? {$_.mainwindowtitle.length -ne 0} | Select Name, @{Label="Application"; Expression={$_.mainwindowtitle}}, @{Label="State"; Expression={"Running"}}, CPU, @{Label="Working Set"; Expression={"{0,12:n0} KB" -f ($_.WS/1kb)}} | Select -First 5
or send this data to file:
Get-Process | Sort -Property CPU -Descending | ? {$_.mainwindowtitle.length -ne 0} | Select Name, @{Label="Application"; Expression={$_.mainwindowtitle}}, @{Label="State"; Expression={"Running"}}, CPU, @{Label="Working Set"; Expression={"{0,12:n0} KB" -f ($_.WS/1kb)}} | Select -First 5 | Export-Csv -Path G:\Temp\log1.csv -NoTypeInformation


Both lines above show only a limited set of data (the requested data). If you want the standard output use the following line:
The screen layout looks like:
Handles:   NPM:   PM:   WS:   VM:   CPU:   ID:    ProcessName:
Get-Process | Where { $_.cpu -gt 0 } | Sort -Property CPU -Descending | Select -First 5
or send this data to file  (this file will show a boatload of information...be warned!):
Get-Process | Where { $_.cpu -gt 0 } | Sort -Property CPU -Descending | Select -First 5 | ConvertTo-Csv | Out-File -FilePath G:\Temp\log2.csv


Still-to-do
Filenames should contain the date-time when they are generated. Right now I'm overwriting files. Appending data could be a solution, but I did not find such an option yet in my travels.


Notes
Save the one you like into a text file with the extension .ps1 (for example: FileNameYouDesire.ps1) and use the Windows task scheduler to run this file at the desired interval. To my knowledge you can start a script in administrator mode with the Windows 7 Task scheduler (but I'll deny having said that in court ;) ).

You will get different results, depending the level of user you login with. The adminstrator account will show you everything, when using this on a limited user account you'll see the information from processes etc. associated with the current user only. That is the way how PowerShell works.

You see me use two different ways to write the data to file. The method 'Export-Csv' is not UTF8 friendly. Reading the file into LibreOffice at first showed garbage, but all data became visible after changing the characterset from 'UTF8' to 'Western-Europe (ASCII/US)'. The other method ConvertTo-Csv did not require this change when being read into LibreOffice.    

As the commands are basic, these will work on each version of PowerShell. I would upgrade the PowerShell on XP to the highest version available though. My computer at home is not (or will be) connected to the internet, so I didn't see a reason yet to upgrade to Win7 SP1. IIRC Win7 comes with PowerShell version 2, which is upgraded to version 3 after service pack 1. XP on the other hand cannot upgrade to more than version 2.

Another idea one could entertain is to write this data into the appropiate EventLogViewer from Windows itself and use that software to get an overview. Ok, I might fill my next Saturday afternoon with this puzzle.
1638
Or we could do what Aerosmith was/is still singing about....'Eat the rich'.

That would solve quite some issues quickly  ;)
1639
General Software Discussion / Re: The Non-Notepad(MS) Thread!
« Last post by Shades on June 21, 2013, 07:18 PM »
Aranaea used to be a lightweight editor that was already head and shoulders above notepad when I first encountered it (version 1 or so). Now it is at version 5.

If you really want to go barebones and oldskool...there is always edxor. The installer is less than 50KByte! Or get the portable one (30KByte) if you find that excessive. This is a very decent text editor with quite a lot of extra functions (but no tabbed interface). 

HiEditor does tabs is also very small (about 3 times the size of edxor) and has functions you will likely not use as it comes from a site dedicated to "good old" ASM (assembly) coding.

Still want more? There is always Zeus. This is an expensive and extensive text editor, but they offer a lite version of their software for free.
1640
General Software Discussion / Re: Log CPU and memory usage
« Last post by Shades on June 19, 2013, 10:32 AM »
PowerShell can do this. PowerShell comes with Windows Vista and Higher and can be downloaded from Microsoft for free for XP.

Creating some scripts is quite easy, especially when using a free IDE such as the one from Idera. (this one actually comes with example scripts that hardly need any modifying to do what you want. Run these scripts at the intervals you prefer and you should be done.

1641
General Software Discussion / Re: notepad++
« Last post by Shades on June 05, 2013, 05:06 PM »
At the time (some 6 months ago) there was a link to a portable version. At least my memory clearly says so...which is (of course) not affected at all by the beer and wine I have consumed in the mean time...

1642
General Software Discussion / Re: notepad++
« Last post by Shades on June 05, 2013, 04:08 PM »
The base version of Notepad++ (whichever version) has always worked fine (I always download the latest portable version though). In my personal experience NP++ does sometimes mess up with a combination of plug-ins. These plugins by themselves work fine, just the combination of them doesn't always work as advertised.

Because of that I tried the beta from Sublime text editor. This is also a very, very nice text editor, but that one is not free (although the version I tried at the time can be used indefinitely). Still, NP++ keeps drawing me back as it feels the most 'natural' to me.

I tried to use a portable Windows version of GVim, but that one didn't feel right to me. However, I do think it is a very capable text editor. And when you try GVim (or Vim), I also took a look at the portable Windows version of EMacs. But that has the same "problem" as GVim. But also here I can say that this is a very capable text editor.

All in all, the power (and 'simplicity') of Notepad++ cannot be beaten (in my point of view). I think all went "wrong" with me when I used CygnusEd on Amiga. That was (and still is) a favorite of mine.

1643
Post New Requests Here / Re: IDEA: Bring back the BEEP!
« Last post by Shades on June 03, 2013, 10:52 AM »
Another long shot:
http://www.bttr-soft...rd_entry.php?id=6570

Pieces of software are available here that are supposed to enable you to play all kinds of audio through the system speaker.
1644
Finished Programs / Re: SOLVED: GUI for DISM
« Last post by Shades on June 01, 2013, 02:39 PM »
For Windows XP there is a piece of freeware called 'nLite'. That should give you more than enough to play with. I am sure there are similar pieces of software for Vista and higher. I never bothered to look for these though.
1645
Post New Requests Here / Re: Patch to Disable ACL access-control-lists
« Last post by Shades on June 01, 2013, 02:36 PM »
As far as I know, the NTFS version on Vista and its more modern kin use a transactional model to do the writing and reading to disk. Although that is an extra layer, in most cases it makes the filesystem faster and more reliable.

Until things go wrong, but I explained (or at least tried to) in a previous post on a different thread that I managed to make the Operating system lose contact with the file system (W2008 R2), which destroyed two huge Oracle test databases I maintain.

Anecdotal, but here goes:
Even after aligning the partitions on my XP computer I still feel that the new NTFS version on my W2008 R2 computer is faster (both use SATA2 disks).

 
1646
And as most of the malware makers are in it for the money, so they will hit the 6-digits soon and than they are legit (to US law).

I'll guess that the country that invented the internet is also allowed to kill it. Clearly an ID-10-T at work...

1647
Living Room / Re: Used Computer, $116,000 or Best Offer
« Last post by Shades on May 24, 2013, 07:32 PM »
At least you could see how far Jobs would go to create a very minimalistic design for "his" creations... :P
1648
General Software Discussion / Re: Help needed with computer problem
« Last post by Shades on May 24, 2013, 07:29 PM »
My personal computer (self-built, also Asus) has a similar problem when it is turned on and a power failure occurs. No POST, no error beep(s), nothing works except the LED on the mainboard and the CPU fan spins up.

Before I became smart and read the manual of the mainboard I had to disconnect the power supply cable from the mainboard and leave it lying around for two or three weeks (no joke!).

However, when reading the manual after the third or fourth time this happened (you would think I had enough time to do so the first time this happened  :-[ ) I saw that my mainboard still came with a jumper to clear each and every setting in POST/BIOS. I honestly thought they didn't do that anymore.

Anyway, when I placed that jumper in the "clearance" position (I removed the battery on the main board as well) and left it like that for 10 minutes. Then I put the jumper back in its original position and placed the battery back. The system came back if nothing had happened to it.

The solutions from the previous posters I would try first as they will likely solve your problem. But sometimes a really hard reset can work wonders too.

1649
That is the typical MO of any anti-virus company, after all that is their bread and butter.
1650
Do the pages:

http://support.kaspe...vzscripts/tsw.avz.51

and

http://forum.kaspers...ndex.php/t81420.html

explain the problem/reason why kis throws the error message sufficiently for you?

Read through all the comments available on the second link to get a clearer picture..
Pages: prev1 ... 61 62 63 64 65 [66] 67 68 69 70 71 ... 118next