Recent Posts

Pages: 1 ... 3 4 [5] 6 7 ... 10
41
Member Introductions / Re: HELLOW THAIR GIEZ
« Last post by Floyd on March 19, 2016, 11:56:56 am »
oh wow. a new person. sorry i didn't come here sooner, i dont actually expect people to be here.
43
Computers and Technology / Re: Sun VirtualBox
« Last post by mrgamerface98 on March 16, 2016, 08:21:57 am »
and I know nothing about Linux, although I could help you dual boot 7 and any version of Windows or even better, 7 and eComStation.
HELP ME NOW
You say NT 3.51 is the best version of Windows? Help me dual boot it with Vista please!!!
44
Member Introductions / HELLOW THAIR GIEZ
« Last post by mrgamerface98 on March 08, 2016, 04:54:35 pm »
Hi. I exist. Here are some things I like that also exist:
  • Plants vs. Zombies
  • Computers
  • YouTube (Super Gaming Bros., JAR Media, Grade A Under A)
  • This website
I discovered this site from the progman.exe thing, and I thought it was cool. Bye!
45
I downloaded the .zip but it just said "Incorrect command line parameter:*"
WTF do I do? (Using Vista, only 1, 2, and 9x were worse.)
Edit: With regedit, it's asking me if I want to make a change, winfile says the file I'm looking for doesn't exist, and  Chrome tries to open a file that doesn't exist. :(
46
Hello. Could you just E-mail all of this shit to me?  I don't feel like setting up an NT 3.51 Virtual Machine (and I can't even do it without a Bluetooth adaptor because my keyboard broke and I'm using the Tablet Input Panel) and am not a big fan of explorer, I'll use it but progman and winfile are better. :)
edit:nvm, didn't see that you posted the .zip
47
Website News / Re: HAPPY NEW YEAR (I archived old news)
« Last post by Floyd on January 19, 2016, 04:51:51 pm »
how did you find this place anyway?
48
Computers and Technology / Re: Another useful "file explorer"
« Last post by Floyd on January 19, 2016, 04:50:22 pm »
neat!

wow two new posts by someone other than me in one year? that's a record that hasn't been beat since like 2012
49
Website News / Re: HAPPY NEW YEAR (I archived old news)
« Last post by Floyd on January 19, 2016, 04:46:15 pm »
oh wow hi new person this hasn't happened in like two years!

EDIT: "...attachments directory is not writeable!"
yeah theres a lot of bugs in the forum that i dont know about because not enough people actually use it for them to show up so nothing ever gets fixed. its also apparently running on outdated and unupported software now too ¯\_(ツ)_/¯
50
Computers and Technology / Another useful "file explorer"
« Last post by benthecomputerguy93 on January 07, 2016, 11:30:09 am »
Here's just a simple batch script that I found on the internet and changed slightly for my own use. It uses powershell to invoke the openfiledialog() function. This is extremely useful in situations where windows explorer is unavailable on a system, either because of an infection or because its server core edition and thus missing or something along those lines.

Code: [Select]
@echo off
color 0a
echo.
echo Errors and messages will be outputted here.
echo.
setlocal
:top
set filename=
set ps_cmd=powershell "Add-Type -AssemblyName System.windows.forms|Out-Null;$f=New-Object System.Windows.Forms.OpenFileDialog;$f.Filter='All files (*.*)|*.*';$f.showHelp=$true;$f.ShowDialog()|Out-Null;$f.FileName"

for /f "delims=" %%I in ('%ps_cmd%') do set "filename=%%I"

if defined filename (
    start %filename%
goto top
)

Maybe someone else can use it!
Pages: 1 ... 3 4 [5] 6 7 ... 10