sysadmin-tips-and-tricks.blogspot.com sysadmin-tips-and-tricks.blogspot.com

sysadmin-tips-and-tricks.blogspot.com

sysadmin-tips-and-tricks

My personal Tech Notes. Friday, 31 July 2015. Powershell - NetApp Volumes, Snapshots and Dedup. Some basic scripts that helped we get some sizing information. First of all you'll need Powershell (who knew? And then the NetApp Powershell Toolkit - I found this link. First script get the volume information with a loop due to having a number of Filers to get information on:. Filers = (Get-Content C: Script Output Filers.txt). Foreach ($filer in $filers){. Connect-NAController $filer -Credential account-name.

http://sysadmin-tips-and-tricks.blogspot.com/

WEBSITE DETAILS
SEO
PAGES
SIMILAR SITES

TRAFFIC RANK FOR SYSADMIN-TIPS-AND-TRICKS.BLOGSPOT.COM

TODAY'S RATING

>1,000,000

TRAFFIC RANK - AVERAGE PER MONTH

BEST MONTH

April

AVERAGE PER DAY Of THE WEEK

HIGHEST TRAFFIC ON

Wednesday

TRAFFIC BY CITY

CUSTOMER REVIEWS

Average Rating: 4.5 out of 5 with 4 reviews
5 star
2
4 star
2
3 star
0
2 star
0
1 star
0

Hey there! Start your review of sysadmin-tips-and-tricks.blogspot.com

AVERAGE USER RATING

Write a Review

WEBSITE PREVIEW

Desktop Preview Tablet Preview Mobile Preview

LOAD TIME

3.5 seconds

FAVICON PREVIEW

  • sysadmin-tips-and-tricks.blogspot.com

    16x16

  • sysadmin-tips-and-tricks.blogspot.com

    32x32

  • sysadmin-tips-and-tricks.blogspot.com

    64x64

  • sysadmin-tips-and-tricks.blogspot.com

    128x128

CONTACTS AT SYSADMIN-TIPS-AND-TRICKS.BLOGSPOT.COM

Login

TO VIEW CONTACTS

Remove Contacts

FOR PRIVACY ISSUES

CONTENT

SCORE

6.2

PAGE TITLE
sysadmin-tips-and-tricks | sysadmin-tips-and-tricks.blogspot.com Reviews
<META>
DESCRIPTION
My personal Tech Notes. Friday, 31 July 2015. Powershell - NetApp Volumes, Snapshots and Dedup. Some basic scripts that helped we get some sizing information. First of all you'll need Powershell (who knew? And then the NetApp Powershell Toolkit - I found this link. First script get the volume information with a loop due to having a number of Filers to get information on:. Filers = (Get-Content C: Script Output Filers.txt). Foreach ($filer in $filers){. Connect-NAController $filer -Credential account-name.
<META>
KEYWORDS
1 sysadmin tips and tricks
2 useful for this
3 import module dataontap
4 controller = isg filer06
5 get navol foreach {
6 n= volumename ;e={$volname} `
7 posted by
8 colin hill
9 no comments
10 email this
CONTENT
Page content here
KEYWORDS ON
PAGE
sysadmin tips and tricks,useful for this,import module dataontap,controller = isg filer06,get navol foreach {,n= volumename ;e={$volname} `,posted by,colin hill,no comments,email this,blogthis,share to twitter,share to facebook,share to pinterest,loading
SERVER
GSE
CONTENT-TYPE
utf-8
GOOGLE PREVIEW

sysadmin-tips-and-tricks | sysadmin-tips-and-tricks.blogspot.com Reviews

https://sysadmin-tips-and-tricks.blogspot.com

My personal Tech Notes. Friday, 31 July 2015. Powershell - NetApp Volumes, Snapshots and Dedup. Some basic scripts that helped we get some sizing information. First of all you'll need Powershell (who knew? And then the NetApp Powershell Toolkit - I found this link. First script get the volume information with a loop due to having a number of Filers to get information on:. Filers = (Get-Content C: Script Output Filers.txt). Foreach ($filer in $filers){. Connect-NAController $filer -Credential account-name.

INTERNAL PAGES

sysadmin-tips-and-tricks.blogspot.com sysadmin-tips-and-tricks.blogspot.com
1

sysadmin-tips-and-tricks: December 2013

http://www.sysadmin-tips-and-tricks.blogspot.com/2013_12_01_archive.html

My personal Tech Notes. Friday, 27 December 2013. Microsoft - SQL and anti-virus. Just read an interesting article. On AV and SQL by Michael K. Campbell - short, but gets to the point. It has a link to a very useful Microsoft KB article. On AV DLLs that cause SQL performance issues. Thursday, 19 December 2013. Solaris - /tmp permissions. Had a bit of a problem when one of the guys decided to restore file to the /tmp directory instead of the original location. Monday, 16 December 2013. Solaris - ZFS quota.

2

sysadmin-tips-and-tricks: March 2014

http://www.sysadmin-tips-and-tricks.blogspot.com/2014_03_01_archive.html

My personal Tech Notes. Wednesday, 26 March 2014. Powershell - Creating a scheduled task to run a script gathering application logs from a number of servers. Hmmm long title for such a small task. As the title says - gathering the application log from a number of servers, running it as a scheduled task. First of lets start with the script. Server = @('Server1','Server2','Server3');. Get the application log of every server listed above. Foreach ($computer in $server) {. Note to self - fix! Log of the task.

3

sysadmin-tips-and-tricks: January 2014

http://www.sysadmin-tips-and-tricks.blogspot.com/2014_01_01_archive.html

My personal Tech Notes. Tuesday, 7 January 2014. Powershell - Query Group Membership in another Domain. This in one way that I know of to search another Domain by mounting it as a drive (I'm sure there are different ways of skinning a cat but this technique would work for a number of Domains - again I'm sure there are further options to be able to the same thing! Query Group Membership #. Mount AD as a drive #. Get-ADGroup -Filter {Name -eq "ADGroup"}. Get-ADGroupMember -ea 0 -recurs. Recently we needed ...

4

sysadmin-tips-and-tricks: November 2013

http://www.sysadmin-tips-and-tricks.blogspot.com/2013_11_01_archive.html

My personal Tech Notes. Thursday, 14 November 2013. VMware - Checking on snapshots. The backups failed one night and left a number of snapshots marooned. The backup process snapshots the NetApp volume, backups up the VMs, then deletes the snapshots). To check which machines were affected I created and ran a Powershell script. First of all I downloaded the VMware PowerCLI from here. You will need an VMware account to download. Then opened up the PowerCLI to run the following commands:. UPDATE - 14th Novem...

5

sysadmin-tips-and-tricks: Solaris - checking whether an account is locked or not

http://www.sysadmin-tips-and-tricks.blogspot.com/2012/11/solaris-checking-whether-account-is.html

My personal Tech Notes. Thursday, 15 November 2012. Solaris - checking whether an account is locked or not. Recently we needed to be able to check what the account status on one of the servers was as there was an access problem. Was it locked out? How do we check from a terminal session? Passwd -s account name. This comes back with the accounts status. In this instance it came back with:. PS = a normal working account. LK = locked out account. NP = account has no password. Passwd -u account name. We kept...

UPGRADE TO PREMIUM TO VIEW 15 MORE

TOTAL PAGES IN THIS WEBSITE

20

OTHER SITES

sysadmin-stuff.blogspot.com sysadmin-stuff.blogspot.com

SysAdmin

SanDisk announces world's largest capacity microSD memory card. SanDisk has announced the world’s largest capacity microSD memory card. Smaller than a typical human fingernail, this new card is packed with 128GB of storage which is enough to hold 16 hours of full HD video, 7,500 songs, 3,200 pictures and more than 125 apps, all on a single card. One could argue that portable memory cards like this are on the way out, what with the rise in popularity of cloud storage as well as the fact that fewer and few...

sysadmin-subsystem.com sysadmin-subsystem.com

Dyn.com Parked Domain Page

Your domain is parked. What’s next? Thanks for purchasing/transferring your domain through Dyn. Did you know that we also offer the most reliable and scalable. DNS and Email Delivery services to compliment your website? Our most popular choices are available below. Only $35 per year. Add Standard DNS For My Domain. The perfect DNS solution for websites that don't generate revenue or exceed 750,000 queries per month. 4 Geographically Diverse Servers. Zone and Record Control. Support For 9 DNS Record Types.

sysadmin-support.blogspot.com sysadmin-support.blogspot.com

Полезности по администрированию

Среда, 12 декабря 2012 г. Как я ставил сертификаты на GlassFish. Довольно давно ничего не заносил сюда, хотя парочка дел этого и заслуживала - к сожалению, времени.НЕТ. Попробую частично исправить эту ситуацию, тем более, что информация для данного поста собиралась "на ходу" и "по крупицам". Установку и настройку ОС, GlassFish и внутреннего СА. В данной статье я рассматривать не буду. С одной стороны ничего сложного нет, кроме некоторых нюансов настройки GlassFish касаемых имени сервера в файле host.

sysadmin-talk.org sysadmin-talk.org

Sysadmin Talk

Find the best information and most relevant links on all topics related to sysadmin-talk.org.

sysadmin-tesla.co.nr sysadmin-tesla.co.nr

.:.:.SysAdmini forum.:.:.ETS::Nikola Tesla.:.:.

SysAdmini forum.:.:.ETS: Nikola Tesla.:.:. SysAdmini forum ETS Nikola Tesla. To visit .:.:.SysAdmini forum.:.:.ETS: Nikola Tesla.:.:.

sysadmin-tips-and-tricks.blogspot.com sysadmin-tips-and-tricks.blogspot.com

sysadmin-tips-and-tricks

My personal Tech Notes. Friday, 31 July 2015. Powershell - NetApp Volumes, Snapshots and Dedup. Some basic scripts that helped we get some sizing information. First of all you'll need Powershell (who knew? And then the NetApp Powershell Toolkit - I found this link. First script get the volume information with a loop due to having a number of Filers to get information on:. Filers = (Get-Content C: Script Output Filers.txt). Foreach ($filer in $filers){. Connect-NAController $filer -Credential account-name.

sysadmin-tips.net sysadmin-tips.net

sys admin tips | Outils, scripts, trucs & astuces pour les systèmes Unix

Outils, scripts, trucs and astuces pour les systèmes Unix. Vous êtes administrateur systèmes Unix et vous souhaitez vous simplifier la vie lors du développement de scripts sans sacrifier la qualité des interfaces et la structure du code? Flasher un Iomega/Lenovo ix2 après un crash. Câble et console série. J’ai fait l’acquisition du câble suivant qui fonctionne parfaitement. Http:/ www.ftdichip.com/Products/Cables/USBTTLSerial.htm. Http:/ www.prolific.com.tw/US/ShowProduct.aspx? Broche 1 VCC (3.3V). La br...

sysadmin.3dn.ru sysadmin.3dn.ru

Каталог файлов - Клуб сисадминов

Понедельник, 17.08.2015, 01:03 Приветствую Вас Прохожий. Всего материалов в каталоге: 20. Seagate SeaTools v.1.1.07. Просмотров: 14714 Добавил: GrayZOR. Дата: 17.10.2007 Рейтинг: 0.0/0 Комментарии (44). Auslogics Disk Defrag 1.4.9. Просмотров: 867 Добавил: GrayZOR. Дата: 17.10.2007 Рейтинг: 0.0/0 Комментарии (6). Искусство программирования для UNIX. Просмотров: 745 Добавил: GrayZOR. Дата: 17.10.2007 Рейтинг: 5.0/1 Комментарии (1). Файл поиска для Opera. Категория: Патчи и заплатки. Blender 2.45 RC2.

sysadmin.adeptit.com.au sysadmin.adeptit.com.au

Adept Information Technology û SysAdmin Tools

Adept IT SysAdmin Tools. This is the beginning (and hopefully not the end) of tools I shall write to help us (myself and other SysAdmins) do the day to day system administration jobs, quicker and easier. These Tools will be targetted at running on Solaris primarily, but will run on other systems as appropriate (The beauty of Java). This starts with the "findUsedSpace" tool, but shall grow in time. So you can see where this might come in handy, some examples are provided. M - the threshold specified is in...

sysadmin.asyd.net sysadmin.asyd.net

Programme #5 | Séminaire #5

9h00 à 9h30 - Accueil. 9h30 à 10h15 - Introduction à Foreman, par Romain Vrignaud. 10h30 à 11h30 - Les CPU pour les nuls, par François Tigeot et Fabrice Bacchella. 14h00 à 14h45 - Logstash, par Aurélien Rougemont et Nicolas Szalay. 15h00 à 15h50 - DNSSEC par Stéphane Bortzmeyer. 16h00 à 16h50 - DANE par Stéphane Bortzmeyer. 17h00 à 17h50 - SmartOS, par Frédéric Alix. 9h00 à 9h30 - Accueil. 9h30 à 10h15 - NFTables, par Éric Leblond. 10h30 à 11h30 - Bhyve et les jails, par Baptiste Daroussin.

sysadmin.az sysadmin.az

www.SYSADMIN.AZ

Please visit this link. Since your browser does not support frames.