SCCM & PowerShell v2 : quelques scripts utiles de la part de Michael Niehaus



Introducing PoshBing – The PowerShell library for Microsoft's Bing Search Engine


Microsoft released their new search engine called "Bing" at, aptly named, https://www.bing.com .

The Bing API has the concept of " SourceTypes " which are essentially data sources that you can search into. My script library provides access to the Image , InstantAnswer , News , MobileWeb , Phonebook , RelatedSearch , Spell , Web , Translation , and Video SourceTypes with the following functions:

Get-BingImage – Search the Image SourceType for a list of images including properties about the media files.

Get-BingInstantAnswer – Get single, authoritative answers to questions.

Get-BingNews – Provide news specific to a topic, a location, or breaking news.

Get-BingMobileWeb – Returns mobile web results, primarily relevant XHTML or WML pages.

Get-BingPhonebook – Enables you to view details about a business for which you are searching as if they were a phonebook entry.

Get-BingRelatedSearch – View searches that provide information in which you might be interested, based on your current search.

Get-BingSpell – Query alternative spellings for a given word or phrase.

Get-BingWeb – Get pages relevant to the queried terms.

Get-BingTranslation – Translate a term from one language to another.

Get-BingVideo – return a list of videos and their properties relevant to the query terms.

The whole article is here : https://devcentral.f5.com/weblogs/Joe/archive/2009/06/03/introducing-poshbing-ndash-the-powershell-library-for-microsoftrsquos-bing-search.aspx


J'en ai rien à déployer 2009 !


Encore 5 jours pour participer au jeu concours !

«J'en ai rien à déployer» : cet été pour garder les neurones pétillants, découvrez des dossiers IT pour voir ou revoir ce que vous auriez pu rater durant l'année et, jusqu'au 30 septembre, gagnez des cadeaux en participant à notre grand jeu-concours final . Si pour vous Bitlocker est une marque de chaussures et BranchCache un nouveau jeu d'acrobaties en forêt, cette session est faite pour vous !

 

Chapitre 1 - Windows 7, Le Kit de Survie

Chapitre 2 - Les Communications Unifiées

Chapitre 3 - Windows 7 : Déploiement, Migration et Administration

Chapitre 4 - Windows Server 2008 R2

Chapitre 5 - Windows 7 : Compatibilité Applicative et Hardware

Chapitre 6 - Internet Explorer 8

Chapitre 7 - Windows 7 et la Sécurité

Chapitre 8 - SQL Server 2008

Chapitre 9 - Windows 7 : Mobilité et Productivité

Chapitre 10 - Office System 2007 & 2010


L'Abonnement TechNet Plus est à l'honneur sur TechNet !


L'équipe TechNet est heureuse de vous offrir 20% de réduction pour tout nouvel achat d'un Abonnement TechNet Plus auprès de Microsoft.

Pour en bénéficier, utilisez le code promotion suivant TNFR09 lors de votre achat en ligne ou par téléphone. Offre valable jusqu'au 31 janvier 2009.

De plus, sachez que pour toute certification passée et réussie via le centre de test Edugroupe, un Abonnement TechNet Plus Direct d'une durée d'un an  vous sera offert !

Profitez-en dès maintenant si vous êtes sur le point de vous certifier prochainement. Cette offre est valable jusqu'aux Microsoft Techdays 2009 inclus, qui auront lieu les 10, 11 et 12 février 2009 au Palais des Congrès de Paris où une offre spéciale vous attend sur le stand carrière du village Microsoft.


Les enregistrements des TechDays sont en ligne !


C'est accessible ici : https://www.microsoft.com/france/vision/mstechdays09/ _fr

image

Et en particulier pour les sessions "Powershell" :

image


Les présentations de la session du 25 mai du Club MOSS


Elles sont disponibles ici : https://clubmoss2007.org _fr

Avec les slides d'Erol directement ici sur SlideShare : https://www.slideshare.net/EROL_MVP/clubmossfrance25-mai2009-1470524 _fr

image

 

et toutes les présentations ici, sur SkyDrive.

image

Mon script de découverte de PowerShell est en attachement de ce message.

2009-05-25 Découverte PowerShell @ CLUB MOSS.rar


Lu sur le Web : Introduction to Windows PowerShell for the SQL Server DBA …


Ce sont 2 articles, didactiques, pour se mettre  immédiatement à Powershell (que vous soyez DBA ou non) :


New PowerShell cmdlets let you manage Active Directory quickly and efficiently


Hands on with Windows Server 2008 r2: Admin tools

Here are some common commands:

  • To load the AD DS module, use Add-Module ActiveDirectory, then Get-Module

  • To get information about a domain, use Get-ADDomain domain_name

  • To display information about domain controllers in a specific domain, use Get-ADDomainController -Discover

  • To browse a specific domain, with results neatly formed in a table, "change directory" into AD via Cd AD: and then use the following series of commands:

    PWD

    DIR | Format-Table -Auto

    CD "DC=domain_name,DC=TLD"

    DIR | ft –a