Jump to content

fluid | fixed

Hide wireless utility at startup


  • Please log in to reply
45 replies to this topic

#1
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
I have an app to connect to my wifi using my usb wireless adapter, it works great but I would like to hidden this app at the startup, infact now when I boot my computer It suddently load the app to connect to my wifi profile, is it possible to hide this app at the startup (still open since it's necessary to connect, but hidden infact it connects automatically to my network and so I don't need to do anything).

Thank you very much!

Ps I have checked the hidden check in the accout settings, however it continue to open the utility.

#2
HUSABER

HUSABER

    InsanelyMac Legend

  • Members
  • PipPipPipPipPipPipPip
  • 639 posts
  • Gender:Male
  • Location:Cyprus
  • Interests:Husaberg FC-600 Four Stroke and KTM500 Two Stroke
    Free Time-My Hackintosh
Go to S/L/Startupitems and delete contents :wink2:

#3
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
Unfortunatly it doesn't work, when the operative system has been chrged, the utility doesn't start and So it doesn't connect to the network.

Help!

#4
robertx

robertx

    InSanelyMac BlueNoser

  • Members
  • PipPipPipPipPip
  • 364 posts
  • Gender:Not Telling
...uncheck it in login items...i load xcode at login and when checked, it's window opened...when unchecked app shows in dock only... :smoke:

#5
p.H

p.H

    InsanelyMac Legend

  • FAQ Team
  • 571 posts
  • Gender:Male
  • Interests:Hackintosh & NBA & COD4 promod

View Postrobertx, on 28 October 2012 - 03:09 AM, said:

...uncheck it in login items...i load xcode at login and when checked, it's window opened...when unchecked app shows in dock only... :smoke:
it should have hide options

#6
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
Sorry but I dont understand . What do I have to do in order to hide complitely the utility at the startup (not have the utility open nor in thr screen nor in background), ?

#7
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
UP! :)

#8
3.14r2

3.14r2

    The Round One

  • Members
  • PipPipPipPipPipPipPipPip
  • 1,048 posts
  • Location:Molvania
Navigate to System Preferences > Accounts > Login Items tab > Add the application you need to be launched at start-up > tick "Hide" check box. Now when the system starts up, the application should launch (appears briefly in Dock, then disappears from the dock, but still running in background).

#9
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
I have done this as said in the first post, but the utility still launch the windows at the startup and it is not hidden

#10
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
UP! :)

#11
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
No one can help me?

#12
iFIRE

iFIRE

    InsanelyMac Deity

  • Moderators
  • 2,428 posts
  • Gender:Male
  • Location:Bcn-Spain
what app you have ? Ralink?

#13
toilleurs

toilleurs

    InsanelyMac Geek

  • Members
  • PipPipPip
  • 124 posts
I think that iPho is talking about the ralink wireless utility, I have the same problem. The application need to start on computer startup to connect to the network, after that the application can be closed and internet connection continue to work. I think we need a script of an application of Automator that kill the wireless utility after about 10 seconds from the initial connection. It's possible?
Thank you!

#14
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
Yes, Ralink Wireless Utility

#15
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
UP!

#16
iFIRE

iFIRE

    InsanelyMac Deity

  • Moderators
  • 2,428 posts
  • Gender:Male
  • Location:Bcn-Spain

Navigate to System Preferences > Accounts > Login Items tab > Add the application you need to be launched at start-up > tick "Hide" check box. Now when the system starts up, the application should launch (appears briefly in Dock, then disappears from the dock, but still running in background).





Attached File  USBWirelessUtility.app.zip   353.58K   26 downloads

#17
iPho

iPho

    InsanelyMac Geek

  • Members
  • PipPipPipPip
  • 222 posts
Thank you very much, it works! But is it possible that once it connects to my network the application automatically close itself? Now It remains in background

#18
toilleurs

toilleurs

    InsanelyMac Geek

  • Members
  • PipPipPip
  • 124 posts
In fact the problem is that the application, that is necessary only on startup to connect to the network, consumes 20% of cpu and if closed the network work without problems. We need something that after that the wireless application connect the USB dongle to the network close wireless utility that become unecessary and uses a lot of cpu. Sorry for the english, i'm italian!

#19
rlf

rlf

    InsanelyMac Legend

  • Members
  • PipPipPipPipPipPipPip
  • 779 posts
You can create an Applescript app to close the wireless utility.  I have done this for my Engenius dongle which uses a version of the same wireless utility. The app is not smart - it doesn't know when the wireless utility has connected.  Instead, it just waits 15 seconds (or whatever you set it to) and then closes the utility.  You may have to give it more time to allow the utility to connect before closing it.

Go to the Utilities folder and open AppleScript Editor.  Enter the following 4 lines into the editor:

tell application "USBWirelessUtility"
delay 15
quit
end tell

Click on the "Compile" button in the toolbar to check your typing.

Go to the File menu and select "Save…" (or Save As…)

In the dialog box that slides down, give the new app a name you like in the "Save As" field.

Set the folder where you want to save the app in the "Where" field.

Set "File Format" to "Application"

Click "Save"

Go to your Login Items in System Preferences and add your new app to them.

Reboot to test it out.  If it quits too quickly, repeat the process and change the 15 seconds to something longer.

#20
toilleurs

toilleurs

    InsanelyMac Geek

  • Members
  • PipPipPip
  • 124 posts

View Postrlf, on 05 November 2012 - 11:00 PM, said:

You can create an Applescript app to close the wireless utility.  I have done this for my Engenius dongle which uses a version of the same wireless utility. The app is not smart - it doesn't know when the wireless utility has connected.  Instead, it just waits 15 seconds (or whatever you set it to) and then closes the utility.  You may have to give it more time to allow the utility to connect before closing it.

Go to the Utilities folder and open AppleScript Editor.  Enter the following 4 lines into the editor:

tell application "USBWirelessUtility"
delay 15
quit
end tell

Click on the "Compile" button in the toolbar to check your typing.

Go to the File menu and select "Save…" (or Save As…)

In the dialog box that slides down, give the new app a name you like in the "Save As" field.

Set the folder where you want to save the app in the "Where" field.

Set "File Format" to "Application"

Click "Save"

Go to your Login Items in System Preferences and add your new app to them.

Reboot to test it out.  If it quits too quickly, repeat the process and change the 15 seconds to something longer.



Yeahhhhhh!!!! It works!!! Thank you very much!





0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

© 2013 InsanelyMac  |   News  |   Forum  |   Downloads  |   OSx86 Wiki  |   Mac Netbook  |   Web hosting by CatN  |   Designed by Ed Gain  |   Logo by irfan  |   Privacy Policy