just visit http://blog.guruvision.in/?p=44
Showing posts with label comp. Show all posts
Showing posts with label comp. Show all posts
Thursday, May 03, 2007
Thursday, April 19, 2007
List of Microsoft Management Consoles and their File Names
Taken from : http://firechewy.com/blog/archive/2005/08/27/914.aspx
I too do not like to go through helllot of shortcute to these services. win+r and command works charms for me!!
MMC Name File Name
Application Server appsrv.msc
Fax Service Manager fxsadmin.msc
Authorization Manager azman.msc
File Server Management filesvr.msc
Certificates snap-in certmgr.msc
Shared Folders fsmgmt.msc
Certificate Services certsrv.msc
Group Policy Editor gpedit.msc
Certificate Templates certtmpl.msc
Internet Authentication Service ias.msc
Indexing Service ciadv.msc
Internet Information Services iis.msc
Computer Management compmgmt.msc
Local Users Groups lusrmgr.msc
Domain Controller Security Policy dcpol.msc
Removable Storage Manager ntmsmgr.msc
Device Manager devmgmt.msc
Removable Storage Operator Requests ntmsoprq.msc
Disk Defragmenter dfrg.msc
Performance Monitor perfmon.msc
Distributed File System dfsgui.msc
Routing and Remote Access rrasmgmt.msc
DHCP Manager dhcpmgmt.msc
Resultant Set of Policy rsop.msc
Disk Management diskmgmt.msc
Local Security Policy secpol.msc
DNS Manager dnsmgmt.msc
Services Configuration services.msc
Active Directory Domains Trusts domain.msc
Telephony tapimgmt.msc
Domain Security Policy dompol.msc
Terminal Services tscc.msc
Active Directory Users Computers dsa.msc
Remote Desktop tsmmc.msc
Active Directory Sites Services dssite.msc
Windows Management Instrumentation wmimgmt.msc
Event Viewer eventvwr.msc
I too do not like to go through helllot of shortcute to these services. win+r and command works charms for me!!
MMC Name File Name
Application Server appsrv.msc
Fax Service Manager fxsadmin.msc
Authorization Manager azman.msc
File Server Management filesvr.msc
Certificates snap-in certmgr.msc
Shared Folders fsmgmt.msc
Certificate Services certsrv.msc
Group Policy Editor gpedit.msc
Certificate Templates certtmpl.msc
Internet Authentication Service ias.msc
Indexing Service ciadv.msc
Internet Information Services iis.msc
Computer Management compmgmt.msc
Local Users Groups lusrmgr.msc
Domain Controller Security Policy dcpol.msc
Removable Storage Manager ntmsmgr.msc
Device Manager devmgmt.msc
Removable Storage Operator Requests ntmsoprq.msc
Disk Defragmenter dfrg.msc
Performance Monitor perfmon.msc
Distributed File System dfsgui.msc
Routing and Remote Access rrasmgmt.msc
DHCP Manager dhcpmgmt.msc
Resultant Set of Policy rsop.msc
Disk Management diskmgmt.msc
Local Security Policy secpol.msc
DNS Manager dnsmgmt.msc
Services Configuration services.msc
Active Directory Domains Trusts domain.msc
Telephony tapimgmt.msc
Domain Security Policy dompol.msc
Terminal Services tscc.msc
Active Directory Users Computers dsa.msc
Remote Desktop tsmmc.msc
Active Directory Sites Services dssite.msc
Windows Management Instrumentation wmimgmt.msc
Event Viewer eventvwr.msc
Wednesday, April 18, 2007
xfce "set as desktop" and random desktop background wallpaper option
now these two options were what i missed much in my xfce desktop. so i tried to google and came up with a trick solution.
as u can easily google out "killall -USR1 xfdesktop" works as charm for changing the desktop bg from the list of images (set in the desktop settings wizard. so here's what i did-
1. set as desktop context menu - put this in a new custom action of thunar
====================================
Name: Set as Desktop
Command: echo '# xfce backdrop list\n%f'>$HOME/.config/xfce4/desktop/backdrops.list;killall -USR1 xfdesktop
File pattern: *
Appears if selection contains: Image Files
====================================
Note: u can also put it into mirage custom actions - if u use mirage as ur image viewer. btw, mirage is a very light weight decent image viewer much better than eog etc...
2. script for choosing random wallpaper in xfce: this script was actually written for gnome by someone else (David Loschavio, Steven Ingelgem). I modified it for xfce.
====================================
#!/bin/bash
# script: change_backgrounds.sh - bash version
# version 2007.3.7
# description: randomly replace gnome background with one from a directory
# credits: David Loschiavo [http://www.djlosch.com], Steven Van Ingelgem, Sudhanshu [http://home.iitk.ac.in/~sudhansh]
# license: GPL
# change bg_path to ur wallpapers folder. the subfolders are automatically added.
bg_path="/media/D/XTRA/wallpapers"
extensions="jpg png gif jpeg JPG GIF PNG"
temp_bg_list=/tmp/bg_change_list
rm -f $temp_bg_list
for extension in $extensions
do
find $bg_path -iregex ".*.$extension" "$temp_bg_list"
done
cnt=`wc -l "$temp_bg_list" | cut -f1 -d" "`
all_bgs=`echo \`expr $RANDOM % $cnt\``
selected_bg=`head -n$all_bgs "$temp_bg_list" | tail -n1`
echo "Changed desktop to: $selected_bg"
# use the follwing command if u want the script for gnome.
#gconftool-2 -t string -s /desktop/gnome/background/picture_filename "$selected_bg"
echo -e "# xfce backdrop list\n$selected_bg">$HOME/.config/xfce4/desktop/backdrops.list
killall -USR1 xfdesktop
exit 0
=====================================
so just copy this into a bash executable file (say .ranbg.sh). make the file executable (chmod a+x .ranbg.sh) and run it whenever u need to get a new wallpaper. u can put it in ur sttartup applications to get a new wallpaper on every logon.
howzzat!!
njoi!
as u can easily google out "killall -USR1 xfdesktop" works as charm for changing the desktop bg from the list of images (set in the desktop settings wizard. so here's what i did-
1. set as desktop context menu - put this in a new custom action of thunar
====================================
Name: Set as Desktop
Command: echo '# xfce backdrop list\n%f'>$HOME/.config/xfce4/desktop/backdrops.list;killall -USR1 xfdesktop
File pattern: *
Appears if selection contains: Image Files
====================================
Note: u can also put it into mirage custom actions - if u use mirage as ur image viewer. btw, mirage is a very light weight decent image viewer much better than eog etc...
2. script for choosing random wallpaper in xfce: this script was actually written for gnome by someone else (David Loschavio, Steven Ingelgem). I modified it for xfce.
====================================
#!/bin/bash
# script: change_backgrounds.sh - bash version
# version 2007.3.7
# description: randomly replace gnome background with one from a directory
# credits: David Loschiavo [http://www.djlosch.com], Steven Van Ingelgem, Sudhanshu [http://home.iitk.ac.in/~sudhansh]
# license: GPL
# change bg_path to ur wallpapers folder. the subfolders are automatically added.
bg_path="/media/D/XTRA/wallpapers"
extensions="jpg png gif jpeg JPG GIF PNG"
temp_bg_list=/tmp/bg_change_list
rm -f $temp_bg_list
for extension in $extensions
do
find $bg_path -iregex ".*.$extension" "$temp_bg_list"
done
cnt=`wc -l "$temp_bg_list" | cut -f1 -d" "`
all_bgs=`echo \`expr $RANDOM % $cnt\``
selected_bg=`head -n$all_bgs "$temp_bg_list" | tail -n1`
echo "Changed desktop to: $selected_bg"
# use the follwing command if u want the script for gnome.
#gconftool-2 -t string -s /desktop/gnome/background/picture_filename "$selected_bg"
echo -e "# xfce backdrop list\n$selected_bg">$HOME/.config/xfce4/desktop/backdrops.list
killall -USR1 xfdesktop
exit 0
=====================================
so just copy this into a bash executable file (say .ranbg.sh). make the file executable (chmod a+x .ranbg.sh) and run it whenever u need to get a new wallpaper. u can put it in ur sttartup applications to get a new wallpaper on every logon.
howzzat!!
njoi!
Monday, April 02, 2007
Have you checked google gadget?
ultimate tool! a must for ur personalized homepage if your browser is always open (like in my case). u can also add it to any other page (ur web page for instance) - well this option is available to any other gadget u like. cool!
powered by performancing firefox
Saturday, March 31, 2007
Ok! so here's more
just came across google notebook. appears to be a handy tool. but alas! no seamonkey support. will check it and give some reviews soon.
powered by performancing firefox
yu hu ... hu hu hu
i got it ...
my search wasn't in vain after all. i gt performancing for seamonkey. thats so cool. and its working. this post is from performancing. its awesome man -- no firefox now. seamonkey rules.
u can also get it here - http://users.skynet.be/fa258499/hackedexts.html#performancing
my search wasn't in vain after all. i gt performancing for seamonkey. thats so cool. and its working. this post is from performancing. its awesome man -- no firefox now. seamonkey rules.
u can also get it here - http://users.skynet.be/fa258499/hackedexts.html#performancing
powered by performancing firefox
xpde
now this is what we call a white elephant and more specifically, "hathi ke dant , khane ke aur dkhane ke aur".
it is a desktp manager claimed to be very close to xp. it is indeed except that it refuses to run any of the launch icons. the xp gui has been totally copied along with start menu etc.. but of no use. cudnt start my computer or notepad or any of my previous installed apps through their destop launchers. wtf!
just too too bad! they only get the points for the presetation - take a look at their screenshots .. and faq - see the questions - trying to become studs!
it is a desktp manager claimed to be very close to xp. it is indeed except that it refuses to run any of the launch icons. the xp gui has been totally copied along with start menu etc.. but of no use. cudnt start my computer or notepad or any of my previous installed apps through their destop launchers. wtf!
just too too bad! they only get the points for the presetation - take a look at their screenshots .. and faq - see the questions - trying to become studs!
now what..
since exaile has gone bad .. i was thinking to try some more music managers/players.
came across a good one - jajuka! sounds more like an arabic geanie. neways its a java based app with good features and gui. the only problem - is a bit resourceful like other java apps (viz. azureus). but it surely is worth giving a try.
tried many others but nothing intriguing enough to write about.
came across a good one - jajuka! sounds more like an arabic geanie. neways its a java based app with good features and gui. the only problem - is a bit resourceful like other java apps (viz. azureus). but it surely is worth giving a try.
tried many others but nothing intriguing enough to write about.
Next: exaile
well! there's already been a lot of buzz about it. i have been using it since two months or so. had tweaked it to use proxy settings. if u too want to tweak it mail me at sudhansh@iitk.ac.in.
the latest version(0.2.9) seems to be somewhat buggy. it doesnt show the wiki infos and lyrics. waiting for a bugfix release.
the latest version(0.2.9) seems to be somewhat buggy. it doesnt show the wiki infos and lyrics. waiting for a bugfix release.
Seamonkey
A very sweet net suite. Much better than the mozilla/netscape you used earlier. Though I love firefox, but I do not use it merely because it takes a hell lot of time to start (I don't know why :O). Same for thunderbird on my box. Hence I had to turn to this seamonkey last year in summers. Since then it has been my favorite. And since the last 1.1 release it has literally been awesome. There are now more extensions, lot better themes and many more features. Currently I am using "seafox" theme with some cool/essential extensions like switchproxy, adblockplus, stumble upon, extension uninstaller (yeah u need to have an extension for this :( ), cooliris, webpage css tabs, cutemenus, multizilla, monkeymenu, imagezoom etc.
after this i don't have to turn back to firefox. the only thing which i miss is performancing (the ultimate blog tool) - and thats one of the main reasons of my being inactive on my blogs ;).
may god bless me by making those developers port it for seamonkey!
amen.
after this i don't have to turn back to firefox. the only thing which i miss is performancing (the ultimate blog tool) - and thats one of the main reasons of my being inactive on my blogs ;).
may god bless me by making those developers port it for seamonkey!
amen.
Subscribe to:
Posts (Atom)