topbanner_forum
  *

avatar image

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

Login with username, password and session length
  • Thursday November 13, 2025, 2:51 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 ... 94 95 96 97 98 [99] 100 101 102 103 104 ... 225next
2451
General Software Discussion / Re: couple of one-click requests
« Last post by 4wd on March 22, 2014, 07:53 PM »
I am trying to Dl your latest scripts right now but the net must be slow to Aussie-land.

Jacksonville, Florida, actually - Aussie-land is closer than you think ;)

I'll attach them to the other thread so that others can be experimented on ... errr ... with them.

See this post.

Just cleaning up my downloads for the last 4 years and found another hosts file editor: Host Mechanic

2452
General Software Discussion / Re: OneNote is now free
« Last post by 4wd on March 22, 2014, 02:28 PM »
This is exactly the reason for Microsoft's recommendations. 99% of the MS Office plugins available are 32-bit & they will not work with the 64-bit version of Office.

Thus the farce of downloading the x86 installer and running it at their recommendation then finding that they apparently installed the x64 version instead ... without telling you.

Did you by chance already have some Office x64 products installed before you installed OneNote?

Other than Windows 8.1 Pro x64, there's no other Microsoft programs installed, (except those installed by WHS2011 - also x64).

When I ran the x86 installer I ended up with a folder in Program Files (x86) of ~200kB and one in Program Files of ~1GB - which if the folder under Program Files actually contained the x86 version, seems contrary to Microsoft's stipulations.
2453
Proof of concept: BlankIt

Usage: BlankIt.exe "full\path\to\executable" [timeout]

Where [timeout] is an integer, (no limit, in seconds), if a value isn't given, (or 0), then the default is 15 seconds.

What it does:
Screen goes black until the called programs GUI is ready for input.  The timeout will kick in if the GUI doesn't open in time or the program has no GUI.

I've only done limited testing with a few programs but it didn't seem to format my HDD.

Executes the program argument, then displays a topmost, borderless black window.  The PID from the Run command is used to execute a Process.WaitForInputIdle call.  If it's received or the timeout occurs, the window is hidden and BlankIt exits.  (Not really necessary to hide the window since BlankIt exits immediately after but wth ...)

NOTE: VERY minimal error checking is done in the program, (doesn't even check for existence of argument program).  Now it does.

Also note, if the program you want to run normally requires Admin privileges, then BlankIt will need to be run from a CLI with Admin privileges to avoid the UAC requester, (unless UAC is disabled).

Code: AutoIt [Select]
  1. #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
  2. #AutoIt3Wrapper_UseUpx=n
  3. #AutoIt3Wrapper_Change2CUI=y
  4. #AutoIt3Wrapper_Res_Fileversion=0.0.1.32
  5. #AutoIt3Wrapper_Res_Fileversion_AutoIncrement=y
  6. #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
  7. #cs ----------------------------------------------------------------------------
  8.  
  9.  AutoIt Version: 3.3.8.1
  10.  Name:           BlankIt.au3
  11.  Author:         4wd
  12.  
  13.  Script Function:
  14.         Blanks screen until called programs GUI opens and is ready for input.
  15.  
  16.  Requires:
  17.         Ascend4nt's Process Function UDF: http://www.autoitscript.com/forum/topic/115352-process-thread-dll-functions-udfs/
  18.  
  19. #ce ----------------------------------------------------------------------------
  20.  
  21. #include <GUIConstantsEx.au3>
  22. #Include <WinAPIEx.au3>
  23. #include <WindowsConstants.au3>
  24. #include "[includes]\_ProcessFunctions.au3"
  25.  
  26. Opt('MustDeclareVars', 1)
  27.  
  28. Const $iAccess=0x00001000
  29. Local $iTimeout = 15, $sCommand, $sPath
  30.  
  31. #Region ### START Koda GUI section ### Form=
  32. Global $Blank = GUICreate("Blank", @DesktopWidth, @DesktopHeight, 0, 0, $WS_POPUP, $WS_EX_TOPMOST)
  33. GUISetBkColor(0x000000)
  34. #EndRegion ### END Koda GUI section ###
  35.  
  36. If $CmdLine[0] = 0 Then _Usage()
  37. For $i = 1 To $CmdLine[0]
  38.         Switch StringRegExp($CmdLine[$i], "(?i)[a-z]+", 0)
  39.                 Case 0
  40.                         If $CmdLine[$i] > 0 Then $iTimeout = $CmdLine[$i]
  41.                 Case 1
  42.                         If StringInStr($CmdLine[$i], "\") > 0 Then
  43.                                 $sCommand = $CmdLine[$i]
  44.                                 $sPath = StringLeft($sCommand, StringInStr($sCommand, "\", 0,-1))
  45.                         Else
  46.                                 $sPath = @ScriptDir & "\"
  47.                                 $sCommand = $sPath & $CmdLine[$i]
  48.                         EndIf
  49.                 Case Else
  50.         EndSwitch
  51.  
  52. If $sCommand = "" Or Not FileExists($sCommand) Then
  53.         ConsoleWrite("Error: Executable does not exist!" & @CRLF & @CRLF)
  54.         _Usage()
  55. $iTimeout *= 1000
  56.  
  57. Local $iPID = Run($sCommand, $sPath)
  58. If $iPID <> 0 Then
  59.         GUISetState(@SW_SHOW)
  60.         Local $hProcess = _ProcessOpen($iPID, $iAccess)
  61.         If $hProcess <> 0 Then
  62.                 _ProcessWaitForInputIdle($hProcess, $iTimeout)
  63.                 _ProcessCloseHandle($hProcess)
  64.         Else
  65.                 Sleep($iTimeout)
  66.         EndIf
  67.         Sleep(250)
  68.         GUISetState(@SW_HIDE)
  69.         Local $Data = _WinAPI_EnumProcessWindows($iPID)
  70.         If IsArray($Data) Then
  71.                 If $Data[0][0] > 0 Then
  72.                         _WinAPI_SetFocus($Data[1][0])
  73.                 EndIf
  74.         EndIf
  75.  
  76. _Exit()
  77.  
  78. Func _Usage()
  79.         ConsoleWrite("Usage: BlankIt.exe <executable> [timeout]" & @CRLF & @CRLF)
  80.         ConsoleWrite("Where: <executable> = full path to executable, (include quotes if required)" & @CRLF)
  81.         ConsoleWrite("       [timeout]    = optional time to wait for program interface in seconds" & @CRLF)
  82.         ConsoleWrite("                      Default = 15" & @CRLF)
  83.         _Exit()
  84.  
  85. Func _Exit()
  86.         Exit
2454
I haven't used/seen MCE but if it has a GUI couldn't you use Process.WaitForInputIdle to detect when the MCE interface comes up?

You could always have a timeout option to fall back to.
2455
General Software Discussion / Re: OneNote is now free
« Last post by 4wd on March 21, 2014, 10:49 PM »
This is exactly the reason for Microsoft's recommendations. 99% of the MS Office plugins available are 32-bit & they will not work with the 64-bit version of Office.

Thus the farce of downloading the x86 installer and running it at their recommendation then finding that they apparently installed the x64 version instead ... without telling you.
2456
General Software Discussion / Re: OneNote is now free
« Last post by 4wd on March 20, 2014, 07:17 PM »
It was a dig at the size of the download and the fact that x86 versions of (any) programs are generally smaller than their x64 counterparts.

Maybe in the future I need to add more  ;D :) 8) ;) :( >:( :D :tellme: :o :huh: :-[ :down: :up: :Thmbsup: :'( :mad: :-\ :-* :P
2457
Developer's Corner / Re: Interesting tool for generating WMI queries
« Last post by 4wd on March 20, 2014, 07:04 PM »
There's the old Scriptomatic v2.0 tool also:

Scriptomatic 2.0 isn’t limited to writing just VBScript scripts; instead, Scriptomatic 2.0 can write scripts in Perl, Python, or JScript as well.

AutoIt WMI Scriptomatic
Scriptomatic4AutoHotkey
Powershell Scriptomatic
ADSI Scriptomatic

Probably a version for every language ...
2458
General Software Discussion / Re: OneNote is now free
« Last post by 4wd on March 20, 2014, 06:51 PM »
  • Some people see 64-bit programs being installed when they chose the 32-bit version, not sure what exactly the difference is

Since x64 versions are usually a bit larger than their x86 counterparts, maybe it accounts for 900MB of the download?
2459
General Software Discussion / Re: couple of one-click requests
« Last post by 4wd on March 20, 2014, 04:52 AM »
There's also HostsMan.

I've been using the MVPS hosts file for the last 3-4 years on my computer.  Plus my router also downloads, combines, and redirects to an internal pixelserver, hosts lists from:

Size of the blocklist in the router is about 500kB.
2460
General Software Discussion / Re: Photos that spontaneously change
« Last post by 4wd on March 19, 2014, 08:14 PM »
Yes/No questions:

1) Have you tried another monitor?

2) Does it only affect the images you have modified?

3) Does it only affect images that are stored on your computer?
     If you answered YES to question (3): Does your image program actually save the modifications to the image, (eg. Picassa doesn't unless you tell it) ?
     If you answered NO to question (3):  Are you sure?

4) Have you tried saving the modified image to a different name?
     If you answered YES to question (4): When the change occurred, did you then compare the original image with the modified image using a program, not your eyes, (eg. Beyond Compare, AntiDupl, XnView, etc)?

5) Have you tried saving the modified image to another format, (eg. PNG, TIFF), as well as the original format?
     If you answered YES to question (5): When the change occurs, does the alternate format image exhibit the same change as the original modified format?

6) Have you tried copying an image you have modified to a flash drive, (then remove it from the computer)?
     If you answered YES to question (6): Did you then plug it into another computer and ensure that the image had been modified?
     If you answered YES to question (6): When the change occurs, did the version on the flash drive exhibit the same change?

7) Have you tried making a large modification to an image, (ie. put "This is a modified image" across the middle of it) ?
     If you answered YES to question (7): When the change occurs, did the large modification also disappear?
2461
For those interested in the Arduino, Little Bird Electronics have a Kickstarter project up.

are you going to back it?

I'd like to but as always, it's dependent on monetary considerations.  I have a EtherTen that's been sitting in a drawer for a couple of years that was for a project I wanted to do but then ... procrastination set in  ::)

Although the MicroView would fit in nicely with what I wanted to do ... actually more than nicely ... hhmmm ... maybe I'll have to introduce Mr Piggy Bank to Mr Hammer ...
2462
...So, now to remove this bloated piece of ...

Ruddy heck. Poor you.

Considering that Office 2013 Pro is only 1 CD, this should have been a 50MB installer download at the very most.

Inline with the Win8->8.1 update, yet another FU by Microsoft to anyone with a monthly data cap or a slow broadband connection.
2463
For those interested in the Arduino, Little Bird Electronics have a Kickstarter project up.

They're taking your normal size Arduino and shrinking it a bit:

73174d137b1f8b99b082ee13c04f574f_large.png

Called the MicroView, more info here: Chip-sized Arduino with built-in OLED Display!
2464
^^ Well, I've been spending some time setting this up in my OneDrive/OneNote.com account, ...

I know what you mean, I thought I'd install it to see what it's like ... it took longer than installing Windows from scratch ... twice.

Over two hours, due to the 1GB+ of download they don't mention, as @rgdot mentions above, and even though I selected, (at their recommendation), the x86 version I find that the x64 version is installed instead.

So, now to remove this bloated piece of ...
2465
https://www.donation...ex.php?topic=37538.0

Better late than never I guess  :)
2466
Living Room / Re: what does this say?
« Last post by 4wd on March 16, 2014, 10:04 PM »
English people really need to learn to enunciate better

Is that a widespread matter or is that limited to few cases?

I've found it to be reasonably widespread, (your normal person in the street), I'm kind of used to it now.
My wife, (English), said that one of the things she noticed when she came to Australia was that everyone talked slower than what she was used to. ;D

Back to the OP, dropping the audio into Audacity, reducing speed by 15% and adding a bit of bass made it a lot easier but still the person speaking ran a lot of her words together.
2467
General Software Discussion / Re: How link to pix in Tumblr?
« Last post by 4wd on March 16, 2014, 09:28 PM »
^^ Logoff would also do it!   ;)

So does the small button on the front of the computer ... just below the power button ...
2468
Fixed :)
2469
General Software Discussion / Re: How link to pix in Tumblr?
« Last post by 4wd on March 16, 2014, 09:01 PM »
In Firefox I run AdBlock Edge, Ghostery, and TrackMeNot, plus I don't know what else; maybe that's interfering?

I run Ghostery, AdBlock Edge, RefControl, Request Policy, Self Destructing Cookies, and a couple of others - none of them interfere with the Inspector.

The Waterfox official download page only shows 64-bit; but I see they do offer a Portable version which is far preferable to me.
Can I install Waterfox Portable 64-bit on my Win7 32-bit OS?

Waterfox is only x64, and no you can't install 64-bit programs onto a 32-bit OS - unless you do so via a VM (which is beyond the scope of the problem).

I found a 32-bit Waterfox but it's from Softonic, ...

Only version on there that shows up in a search is Waterfox x64 v18.0.1 ?

Is there a way to just convert my OS from 32-bit to 64-bit, or do you have to start all over and reinstall and rebuild the entire OS from scratch?

A full re-install is required if you're changing architecture, x64<->x86.

BTW, when I've got a million windows open and want to close them all at once, is there a shortcut command for that?

From SuperUser:
Simultaneously close all open windows:

  •     While pressing the Ctrl key, successively click each of the task icons on the taskbar.
  •     Right-click the last task icon, and choose Close Group.

If you only want to minimize the windows, use the 'Show Desktop' shorcut.
2470
General Software Discussion / Re: How link to pix in Tumblr?
« Last post by 4wd on March 16, 2014, 07:17 PM »
You're doing it wrong  :)

Firefox (Pale Moon/Waterfox):

Menu->Web Developer->Inspector:
 (see attachment in previous post)
Click picture:
 (see attachment in previous post)
Okay so far that doesn't seem to bring up a link for me in Firefox.
Do you think I should install Pale Moon or Waterfox and try again?
Maybe I should try that.

Works fine here in Firefox 26.0 and Pale Moon 27.0 - so if you're not seeing it you're holding your tongue wrong.

You don't even have to click on the image on a page, just mouse over it and the relevant line in the source will be highlighted in the Inspector window.
2471
Direct link to the offer page: https://sonelli.com/500k

Or you could click on the image in the OP  ;)
2472
I would have thought the SSH gave it away  ;)

If you don't know what it generally stands for w.r.t computers, chances are you don't need it.

But I know people can't resist anything with the word FREE attached  ... even if they have no use for it  ;D

Secure SHell client for those that are interested, eg. connect to your Linux VPS, etc.

PRO upgrade adds the ability to proxy over the connection, among other things.
2473
General Software Discussion / Re: How link to pix in Tumblr?
« Last post by 4wd on March 16, 2014, 07:08 AM »
^ That's way too simple ... I don't like it  :-[
2474
Via OzBargain:

v That's a link v

2014-03-16 23_02_45.png

^ That's a link ^

In order to apply the free upgrade from the free version to PRO you need to enter the Google email address tied to your Android device.

The license is tied to your Google email address and is a life time license for an unlimited number of devices.
2475
Link to CNET version: Partition like a pro with our Aomei giveaway

Add $19 if you want lifetime updates.
Pages: prev1 ... 94 95 96 97 98 [99] 100 101 102 103 104 ... 225next