Quantcast
Channel: TechNet Blogs
Viewing all 17778 articles
Browse latest View live

Windows 10 ist da! In drei Schritten zum kostenlosen Upgrade

$
0
0


Windows 10 ist seit vorgestern für Windows 7 und Windows 8.1 PCs sowie Tablets erhältlich. Erstmals ist die neue Windows Generation dabei als kostenloses Upgrade in 190 Ländern verfügbar. Windows 10 wird nun sukzessive im Laufe der nächsten Tage und Wochen an alle Anwender weltweit ausgeliefert.

 

Wie Nutzer nun am schnellsten an ihr kostenloses Upgrade gelangen? Ganz einfach: Jetzt das Upgrade reservieren, die automatische Benachrichtigung auf dem eigenen Gerät abwarten und Windows 10 installieren.

 

Schritt 1: Upgrade jetzt reservieren

Anwender reservieren ihr kostenloses Upgrade über die Get Windows 10-App. Dafür klicken sie einfach auf das kleine Windows-Symbol auf der rechten Seite ihrer Taskleiste und wählen im App-Fenster „Jetzt kostenloses Upgrade reservieren“ aus. Damit wird die Kompatibilität des Rechners direkt überprüft. Nutzer, welche die App nicht finden können, erhalten von Microsoft hier weitere Hilfe: http://www.microsoft.com/de-de/windows/windows-10-faq.

 

Schritt 2: Automatische Benachrichtigung erhalten

Das kostenlose Upgrade wird sukzessive ausgerollt. Sobald es zur Verfügung steht, erhalten Nutzer eine automatische Benachrichtigung. Diese zeigt an, dass der PC für das Windows 10 Upgrade vorbereitet ist.Im Rahmen des neuen Prinzips „Windows as a Service“ empfiehlt Microsoft allen Anwendern das kostenlose Upgrade auf die aktuell sicherste und modernste Windows Version.

 


 

Schritt 3: Kostenloses Upgrade installieren

Nachdem Anwender die Benachrichtigung zur Verfügbarkeit erhalten haben, können Sie das Upgrade durchführen – sofort oder auch zu einem späteren Zeitpunkt. Nachdem Windows 10 installiert wurde, erhält das Gerät darüber hinaus kostenlose Aktualisierungen.

 

Alle Informationen zum Upgrade-Prozess gibt es unter http://www.microsoft.com/de-de/windows/windows-10-upgrade.

 

Weitere Pressematerialien zu Windows 10 finden Sie unter http://aka.ms/w10_pressematerialien, auf https://blogs.windows.com/launch/ sowie in unserer Pressemappe. Mehr Details zu Windows 10 gibt es auch in diesem Quick Guide.

 

 

Ein Beitrag von Irene Nadler (@irenenadler)
Communications Manager Devices und Services bei Microsoft Deutschland

- - - -

Über die Autorin


Irene Nadler arbeitet bei Microsoft im Bereich Presse und Öffentlichkeitsarbeit und betreut die Themen Windows, Surface und Windows Phone. Mit Windows ist sie schon seit Windows 95 gut bekannt. In ihrer Freizeit stehen Kultur und Fußball ganz oben auf der Liste.

 

 

 


AzureVM Static IP Does Not Persist

$
0
0

It is possible to configure a “static” IP on your Azure IAAS VMs.  This is something that we looked at in a previous post.  One thing worth pointing out is that there is a little wrinkle with the current implementation, and you may run into unexpected results. 

Static IP assignment in Azure VMs is not the same as configuring a typical static IP for a server in your on-premises network.  When you statically assign an IP address to the Azure VM, it is not entered into the VMs machine’s TCP/IP configuration property sheet .  Rather a reservation is created, so that DHCP hands out the desired address to the VM.  If you look at the VM’s NIC, it is still set as a DHCP client, but the DHCP server will honour the reservation that you configured. 

Well, sometimes. 

Setting a static IP onto an Azure VM may not work as expected, and another VM on the same virtual network could grab the static IP address which was previously assigned to another VM.

One common issue is that the Update-AzureVM cmdlet is omitted when configuring the static IP.  This cmdlet is a requirement.  Some examples of syntax include:

  • $VM | Set-AzureStaticVNetIP 10.00.5 | Update-AzureVM
  • Set-AzureStaticVNetIP -VM(Get-AzureVM -ServiceName "Tailspintoys-Canada" -Name Tail-CA-DC-1) -IPAddress 10.0.0.4 | Update-AzureVM
  • Get-AzureVM -ServiceName "Rmilne-Tailspintoys-Canada" -Name Tail-CA-DC-1 | Set-AzureStaticVNetIP -IPAddress 10.0.0.4 | Update-AzureVM

Note that in the first example, $VM contains a reference to the Azure VM which is being modified.

  

Holly Lab Setup, Buddy!

<super tenuous link to Weezer’s Buddy holy> *

In the below cloud service there are several VMs.  Two of the VMs have been configured with static IP addresses using Set-AzureStaticVMNetIP.  These two machines are Tail-CA-DC-1 and Tail-CA-DC-2.  They were assigned IP addresses 10.0.0.4 and 10.0.0.5 respectively.   Tail-CA-DC-1 is already running.  Regardless if we configured a static IP, it would have received 10.0.0.4 anyway as that is the first valid IP in the subnet. 

Cloud Service With Single VM Running - Note IP Address is 10.0.0.4

Let’s check the configuration of the second DC to ensure it has a static IP.  And let us also check the ADFS server to see how that is configured. 

Get-AzureVM -ServiceName rmilne-tailspintoys-canada  -Name Tail-CA-DC-2 | Get-AzureStaticVNetIP

Get-AzureVM -ServiceName rmilne-tailspintoys-canada  -Name Tail-CA-STS | Get-AzureStaticVNetIP

Checking IP Configuration

As you can see DC-2 has 10.0.0.5 set as its static IP, and the STS server does not have a static address.    

Lets power up the STS server.  What IP would you expect it to get?  Since 10.0.0.6 is the next valid IP in the range, would that be a good assumption? 

 

Start Me Up!

<courtesy link to the Rolling Stones Start Me Up and Window 95 launch commercial

Starting up the STS VM we see that the IP address of the second domain controller has been taken by the STS server. Oh my!

Azure VM Does Not Use Static IP Assigned To It

Did we not confirm that the second DC was meant to get the IPAddress 10.0.0.5?  Why has that been taken by the STS server?

 

Good Times Bad Times

<courtesy link to Eddie Brickell Good Times>

At the time of writing there is currently an issue where not all of the Azure VMs on the same virtual network are set with static addresses.  Remember in the above example, only two VMs had static IPs assigned. 

To workaround the issue, if you are assigning static addresses, then you should assign static addresses to ALLof the VMs on that virtual network to ensure you get the desired results. 

In the below screenshot, all of the VMs were updated to use a static IP address.  There are 8 VMs on the virtual network, and now there are 8 static IP addresses assigned.

All VMs Are Not Set With Static IP Address

 

Since all the VMs on the virtual network were assigned a static IP address, let’s see what happens this time when powering up the STS server.  Does it get the correct statically assigned IP?

Static Azure Addreses Working When All VMs Set To Use Static Addresses

Yes it does!  If all of your VMs were configured with static addresses from the start, then you will not have seen this issue.  In the above example the DCs were intended to be the only machines with a static IP.  

 

Cheers,

Rhoderick

*– Since it’s now 20 years since Windows 95 went RTM, thought it would be fun to feature the music videos from the original Windows 95 CD.  Alas they were cut from the OSR media due to space issues….

**– For bonus retro action, you could also listen to the Windows XP setup music….

SharePoint - Determining Network Usage in Preparation for a Migration to Office 365

$
0
0

One of my customers is in the process of migrating their SharePoint On-Premises environment to Office 365. With a move to the Cloud this will put additional load onto their existing Internet connection and they asked me if I could help to determine how much network traffic the existing On-Premises environment generates each day servicing end-user requests. This should give a reasonable idea of the likely impact to their Internet connection, it's not perfect but is more accurate than a good old guesstimate!

To do this I requested a days worth of IIS logs from all Web Servers and used good old Log Parser (one of the most useful tools ever created!) and Excel to analyse the date. In this specific case I omitted the search crawl targets to ensure that the data wasn't skewed by traffic generated by search crawls.

I used the Log Parser query below to break down usage per hour, I did this by analysing the sc-bytes (server to client - downloads) and cs-bytes (client to server - uploads) data from reach request.

cd "C:\Program Files (x86)\Log Parser 2.2\"
LogParser "SELECT TO_STRING(time, 'HH') AS Hour,DIV(DIV(SUM(cs-bytes), 1024), 1024) AS [Uploads (MB)], `
DIV(DIV(SUM(sc-bytes), 1024), 1024) AS [Downloads (MB)] INTO D:\HourlyBreakdown.csv `
FROM D:\IISLogs\*.log GROUP BY Hour" -o:csv -i:iisw3c


Simply update the highlighted values and execute, this will then create a CSV file with a breakdown of Uploads and Downloads in MB per hour - replace D:\HourlyBreakdown.csv with the name of the desired output file and D:\IISLogs with a directory that contains a days worth of IIS logs from each Web Server.

Once the CSV file has been created you can open this with Excel and add a pretty chart, here is my example (also attached for reference).

Brendan Griffin - @brendankarl

Tip of the Day: Network Abstraction Demystified

$
0
0

Today’s (Networking) Tip…

Network Abstraction Demystified

Yesterday's tip talked about the abstraction of the network overlay from the network underlay. Easy enough to say, but how is this actually done?

Relocation of Traffic Shaping Policies

Abstraction is achieved by taking the policy edge of the network; that is to say, the configurations and rules that dictate traffic flow, and moving them away from the physical switches and onto the software-based virtual switches running on hosts.

This is where the Software part of Software Defined Networking comes from.

Extensibility

A feature rich virtual switch is needed to support the variety of policies required in the typical enterprise network, which can include dynamic policies which make real-time forwarding decisions.

QoS Policies

To define customer specific bandwidth caps, or guarantee a minimum SLA.

Security Policies

ACLs, DHCP Guard to prevent against rogue DHCP server, Router Guard to prevent malicious redirects, and so on.

Tenant Isolation Policies

VLANs, PvLANS, as well as modern encapsulation methods used to provide virtual network isolation; NVGRE, VxLAN,

Service Policies

Hardware offload for certain protocols or network services might also be a concern.

The Hyper-V Extensible Virtual Switch provides the capability for the software implementation of network functions including conditional forwarding, flow control, distributed firewalls, and other network services.

Extensibility also allows the experience to be customized beyond the inbox environment. For example, an enterprise can maintain a certain consistency among their existing infrastructure with plug-ins like the Cisco Nexus 1000V Series Switch.

Automation

A solution of this sort is only good it can be automated in some way, which is where System Center Virtual Machine Manager comes in.

Virtual Machine Manager can be used to deploy and manage the software-defined datacenter from the datacenter fabric (physical storage, network, and host resources) to virtual machines and clouds, to the deployment and management of applications and services running on the virtual machines.

But How is This Even Possible?

Orchestration using Standardized Interfaces

As mentioned in yesterday's tip, Orchestration describes the coordination of management, control, and configuration of the network fabric. Mechanisms are dependent upon industry standard protocols and interfaces, support of which is a key factor to determining interoperability between diverse platforms.

And there are few to choose from….

Software Defined Network is all about interoperability!!!

Microsoft uses the industry management standard OMI <http://blogs.technet.com/b/windowsserver/archive/2012/06/28/open-management-infrastructure.aspx> for its SDN implementation. An open sourced version of WMI; OMI is at the same time a management schema and a protocol. Other standards include OVSDB <http://www.rfc-editor.org/rfc/rfc7047.txt> , and OpenFlow <https://www.opennetworking.org/sdn-resources/openflow> , which can be used for fine-grained flow control, and Cisco’s OpFlex <http://www.cisco.com/c/en/us/solutions/collateral/data-center-virtualization/application-centric-infrastructure/white-paper-c11-731302.html> .

Other Organizations and Consortiums

ONF Open Networking Foundation <https://www.opennetworking.org/>

Open Daylight <http://www.opendaylight.org/>

Open Compute Consortium <http://www.opencompute.org/>

IETF <http://www.ietf.org/>

DMTF <http://www.dmtf.org/>

DPM で取得したバックアップデータをMicrosoft Azure 上で保護をする手順について

$
0
0

こんにちは。日本マイクロソフト System Center Support Team の久保です。

データの保存はオンプレミスの環境から、クラウド上へと移行しつつあります。

クラウド上でデータを保護することは、初期費用が少ない、課金制なので必要な容量のみの支払いでいい、保守管理が容易になる といったメリットがあります。

今回は、Azure と連携したDPM のデータ保護について、ご紹介いたします。

 

~~~~~~~~~~~~~~~~~~~~~
> Azure
DPM バックアップデータを保存するための前提条件
~~~~~~~~~~~~~~~~~~~~~

- システム要件

DPM は、System Center 2012 SP1 以上がインストールされた物理サーバーまたは Hyper-V 仮想マシンとして実行が可能となります。
DPM
の運用環境により、必要となる更新プログラムのロールアップが変わります。サポート マトリックスをご確認ください。
* DPM
Azure Backup エージェントをインストールする前に、更新プログラムの適用を完了させてください。
また、DPM には、 Windows PowerShell および .Net Framework 4.5 がインストールされている必要があります。

- Azure Backup

DPM サーバーに Azure Backup エージェントがインストールされている必要があります。

- Azure へバックアップするときのデータ量
バックアップ データは、Azure コンテナー ストレージに格納されます。
Azure コンテナー ストレージにバックアップできるデータ量に制限はありません。
しかしながら、1 つのデータ ソース (ボリュームやデータベースなど) の転送最大サイズは 1.65 TB となります。
1.65 TB 以上のボリュームやデータベースをAzure へバックアップをする際には、予め、ボリュームを分けていただくか、データベースを分割してご取得いただく等の検討が必要となります。


参考となる技術情報:
> Azure Backup の概要
https://azure.microsoft.com/ja-jp/documentation/articles/backup-introduction-to-azure-backup/

> Azure への DPM バックアップの前提条件
https://msdn.microsoft.com/ja-jp/library/azure/Dn337337.aspx

> DPM protection support matrix
https://technet.microsoft.com/en-us/library/jj860400.aspx


~~~~~~~~~~~~~~~~~~~~~
> Azure 上のデータ保有期間
~~~~~~~~~~~~~~~~~~~~~

DPM から Azure へバックアップする際に許容される回復ポイントの数は、366 個となっています。
バックアップの保有期間の設定は、366 個以内の回復ポイントにおいて設定することができます。
"日単位 + 週単位 + 月単位 + 年単位" のバックアップの保有期間の合計が 366 以下になるように設定を行ってください。
* DPM 2012 R2 の更新プログラム 5 からは、バックアップと保有期間の設定の範囲を構成が可能となりました。

 

参考となる技術情報:
> Azure Backup を使用した DPM ワークロードのバックアップ
https://msdn.microsoft.com/ja-jp/library/azure/dn337332.aspx

> Azure Backup の長期保有機能を発表
http://blogs.msdn.com/b/windowsazurej/archive/2014/10/01/blog-announcing-long-term-retention-for-azure-backup.aspx


~~~~~~~~~~~~~~~~~~~~~
> Azure Backup
の準備
~~~~~~~~~~~~~~~~~~~~~

DPM で取得したデータをAzure 上で保有するためにAzure Backup のセットアップをします。


手順 1. Backup コンテナーの作成 

 

  1- 1 管理ポータルにサインインします。
  1- 2 [+ 新規] をクリックします。

 


 

 

  1- 3 [DATA SERVICES] > [RECOVERY SERVICES] > [バックアップ コンテナー] > [簡易作成] をクリックします。

 


 


  1- 4 [
名前] に、バックアップ コンテナーを識別するための表示名を入力します。
       [
領域] で、バックアップ コンテナーの地理的領域を選択します。

 


 

 

  1- 5 [コンテナーの作成] をクリックします。

 


 

 

 

手順 2 – コンテナー資格情報のダウンロード

 

  2- 1 [RECOVERY SERVICES] をクリックし、作成したバックアップ コンテナーをクリックします。

 

 

  2- 2 オンプレミスのワークロードの保護の[コンテナー資格情報のダウンロード] をクリックし、資格情報ファイルをダウンロードして、DPM サーバーから簡単にアクセスできる安全な場所に、安全な場所に保存します。

 


 

* セキュリティのため、ファイルのキーは 48 時間で有効期限が切れます。

 

 

 

手順 3 – Azure Backup エージェントのインストールとサーバーの登録

  3- 1 オンプレミスのワークロードの保護のエージェントのダウンロードで[Windows Server] または [System Center Data Protection Manager または Windows クライアント用] を選択し、DPM サーバーからアクセスできる場所にダウンロードします。

 


 

 

  3- 2 セットアップ ファイル MARSAgentInstaller.exe を実行します。

  3- 3 [インストール設定]ページで [インストール フォルダー] [キャッシュの場所] を選択します。

* 既定のインストール フォルダーは<system drive>:\Program Files\Azure Backup Agent です。

 

  3- 4 プロキシの構成をします。

 

 

  3- 5 Microsoft Update のオプトインの設定をします。

 


 

 

  3- 6 インストール画面で問題なければ[インストール] をクリックします。

 


 

 

 

手順 4 DPM サーバーをAzure Backup に設定する 

 

  4- 1 DPM 管理コンソールを起動させます

  4- 2 管理タブのオンラインの登録をクリックします。

 


 

 

  4- 3 プロキシの構成のページで、[次へ] をクリックします。
   プロキシ サーバーを使用する際には設定をしてください
  4- 4 バックアップ資格情報コンテナーのページで、"手順 2" で取得した資格情報コンテナー を選択します。
  4- 5 使用帯域幅の調整
  4- 6 回復先フォルダーの設定


  * Azure Backup からバックアップ データを回復する際に、一度このフォルダにデータをダウンロードします。
      回復するデータの合計量分、容量が必要となります。

 


 

  4- 7 暗号化設定のページで、パスフレーズの設定を行い、登録を完了させます。


* [クリップボードにコピー] より、コピーしたパスフレーズをテキストファイルとして、安全な場所に保管しておくことをお勧めします。

 


 

 

 

手順 5 オンライ保護を利用する

新しい保護グループの作成を行います。

5- 1 新しい保護グループ ウィザードを開始します。
5- 2 保護グループの種類の選択をします。
    今回は"サーバー" を選択します。

 


 

 

  5- 3 グループメンバーの選択のページで、保護するデータの選択をします。

 


 

 

  5- 4 データの保護方法の選択をします。
    保護方法の[オンライン保護を利用する] にチェックを付けます。

 


 

 

  5- 5 短期的な目標値の設定
  5- 6 整合性チェックオプション
  5- 7 オンライン保護するデータの指定のページで、オンライン保護をしたいデータ ソースにチェックを付けます。

 


 

 

  5- 8 オンライン バックアップ スケジュールの指定します。
    バックアップ コピーを作成するためのスケジュールを指定できます。同日内に作成できるバックアップ コピーは2回までとなります。

 


 

 

  5- 9 オンライン保持ポリシーの指定をします。
    * DPM から Azure へバックアップする際に許容される回復ポイントの数が、366 個以下となるように設定をしてください。

 

 

 

  5- 10 オンライン レプリケーションの選択のページで[自動(ネットワーク経由)] を選択します。

 


 

 

  5- 11 概要のページで間違えがなければ、[グループの作成] を始め、保護グループの作成が完了します。

 


 


 

 

* 2015 7 月時点でオフラインでのコピーを日本リージョンでは、提供していない為、日本のストレージをご利用いただく場合は、ネットワーク経由での、初回レプリケーションが必要となります。

参考として、オフラインでのデータインポートサービスについての説明に関しの技術情報です。
> Microsoft Azure Import/Export
サービスを使用した BLOB ストレージへのデータの転送
https://azure.microsoft.com/ja-jp/documentation/articles/storage-import-export-service/



参考となる技術情報:
> Azure DPM Backup
の概要
https://azure.microsoft.com/ja-jp/documentation/articles/backup-azure-dpm-introduction/

> Azure Backup
コンテナーの構成と DPM サーバーの登録
https://msdn.microsoft.com/ja-jp/library/azure/dn337336.aspx

> Microsoft Azure
自習書シリーズ No.9
http://www.microsoft.com/click/services/Redirect2.ashx?CR_EAC=300173766

> DPM
Azure にバックアップするよう設定する
https://msdn.microsoft.com/ja-jp/library/azure/dn337341.aspx#BKMK_NewGroup

> System Center 2012 R2
による SQL Server の保護と監視
http://download.microsoft.com/download/D/B/2/DB237DD3-2B03-4F32-9A40-22E2089DE46D/SCandSQLWP_v1.1.docx



現在Azure は無料評価版が出ております。
ぜひ、本格導入の前などの評価をご検討ください。

親子構成の WSUS でサポートされるバージョンについて

$
0
0

皆さま、こんにちは。 WSUS サポートチームです。

Windows Server 2003 のサポート終了に伴い、WSUS 3.0 SP2 から Windows Server 2012 の WSUS (WSUS 6.x) へ移行を検討されている方も多いかと思います。
本記事では親子構成の WSUS において、サポートされるバージョンについてご案内いたします。

親子構成ではアップストリーム WSUS サーバーとダウンストリーム WSUS サーバーを構成することになりますが、アップストリーム WSUS サーバーのバージョンが、ダウンストリーム WSUS サーバーのバージョン以上である構成のみサポートされます。

例えば、以下のような構成はサポートされます。

1. アップストリーム > ダウンストリーム
アップストリーム WSUS サーバー : WSUS 6.x
ダウンストリーム WSUS サーバー : WSUS 3.0 SP2

2. アップストリーム = ダウンストリーム
アップストリーム WSUS サーバー : WSUS 6.x
ダウンストリーム WSUS サーバー : WSUS 6.x

または

アップストリーム WSUS サーバー : WSUS 3.0 SP2
ダウンストリーム WSUS サーバー : WSUS 3.0 SP2

一方以下のような構成についてはサポートされません。

3. アップストリーム < ダウンストリーム
アップストリーム WSUS サーバー : WSUS 3.0 SP2
ダウンストリーム WSUS サーバー : WSUS 6.x

サポートされない構成をご利用いただいていても製品仕様・設計上の観点からは問題なく動作すると考えられますが、弊社開発部門にて出荷時検証を経ておりませんので、何らかの問題が発生する可能性がございます。
今後、親子構成を組んでいる WSUS のバージョンアップや移行をご検討されている場合は、何卒ご留意賜りますようお願い申し上げます。

Windows 10 の Windows Update の自動更新設定

$
0
0

みなさま、こんにちは!WSUS サポート チームです。

 

7 月 29 日に、ついに Windows 10 がリリースされましたが、みなさまもうアップグレードはされましたでしょうか?!

このブログ記事では、読者のみなさまが気になっているであろう Windows 10 における Windows Update の自動更新設定についてご紹介します。Windows 10 の環境では、Windows Update の自動更新の設定方法が大きく変わりました。下記の順にご案内していきます。

 

・ Windows Update 関連の設定箇所について

・ 自動更新の設定について

 

Windows Update 関連の設定箇所について

Windows 10 からは、コントロール パネルの Windows Update の項目がなくなり、自動更新を含む Windows Update 関連の設定は、すべて 「設定」から行うようになりました。

 

下記の手順にて Windows Update 関連の設定画面を開けます。

 

[スタート] - [設定] を選択します。

 

[更新とセキュリティ] をクリックします。

 

Windows 10 の Windows Update 画面が表示されます。

 

自動更新の設定について

自動更新の設定は、上記画面内にある、[詳細オプション] をクリックすると下記の 2 種類から選択することができます。

- 自動 (推奨)

- 再起動の日時を設定するように通知する

 

*補足*

- 自動 (推奨)

更新プログラムのインストール、再起動まで自動で行えます。

 

- 再起動の日時を設定するように通知する

更新プログラムのインストール完了後、再起動のタイミングを選択することが  可能です。

 

また、Windows 10 以前の OS では、[コントロールパネル] - [システムとセキュリティ] - [Windows Update] から、以下の設定を行うことができました。

 

a) 更新プログラムを自動的にインストールする (推奨)

b) 更新プログラムをダウンロードするが、インストールを行うかどうかは選択する

c) 更新プログラムを確認するが、ダウンロードとインストールを行うかどうかは選択する

d) 更新プログラムを確認しない (推奨されません)

 

Windows 10 では、このうち b) ~ d) の設定を [Windows Update] から行うことができなくなり、既定では a) と同等の動作です。

但し、Windows Update のグループ ポリシーについては、Windows 10 以前の OS のように、構成することができます。たとえば、[自動更新を構成する] ポリシーにて、更新プログラムの検出、ダウンロード、インストール タイミングを構成した際の [Windows Update] 画面は、以下のようになります。(スクリーンショット内の、[一部の設定は組織によって管理されています。] と記載されている環境は、グループ ポリシーによって自動更新の設定が行われていることを示します。)

 

[自動更新を構成する] ポリシーが「無効」の場合

 

[自動更新を構成する] ポリシーにて、「2 – ダウンロードとインストールを通知」が有効となっている場合

 

[自動更新を構成する] ポリシーにて、「3 - 自動ダウンロードしインストールを通知」が有効となっている場合

 

[自動更新を構成する] ポリシーにて、「4 - 自動ダウンロードしインストール日時を指定」が有効となっている場合

 

[自動更新を構成する] ポリシーにて、「5 - ローカルの管理者の設定選択を許可」が有効となっている場合

 

Windows 10 環境向けの WSUS / Windows Update に関する情報は、これからも順次公開していきますので、乞うご期待ください!

 

 

 

Yammer REST API: How to bulk-add members to a group programmatically

$
0
0

So you want to add multiple users to a yammer group via the API? You are not alone! 

This question comes up quite often partly because there is no yammer documented/supported api on how to add members to a group in bulk. Most users, out of desperation, end up hacking endpoints and and their respective parameters by capturing fiddler trace, inspecting browser elements, etc, but this get them into an unsupported state as undocumented APIs could change and/or break at any time without any prior notice.

In this blog post, I will share my experience on how I worked with some clients to bulk add users into a yammer group via the API - using documented API endpoints. 

Prerequisites

The Pseudo-code 

This implementation is represented in pseudo-code so as to make it easier for you or your developers to translate this information into any programming language of choice. 

 #Declare variables and constants  
 Array temp = Read userIDs from csv  
 constant group_id = 123  
 constant client_id = c456 
 var userid = 0;  
 ImpersonationURL = https: //api.yammer.com/api/v1/oauth/tokens.json?user_id=$userid&consumer_key=$client_id
 GroupURL = https: //api.yammer.com/api/v1/group_memberships.json?group_id=$group_id  
 while temp contains value {  
 userid = temp  
 #Impersonate the user with the VA's OAuth token   
 json_response = HTTP.GET (ImpersonationURL, userid).Authorization.Header(Bearer verified_admin_token)  
 #Consume the impersonated user's token from the JSON response  
 if json_response == null   
   exit and/or catch NullPointerException
 else  
#Read user token value from the json response  
user_token = json_response.token  
#Now, add the impersonated user to the group  
HTTP.POST (GroupURL, group_id).Authorization.Header(Bearer user_token)  
 if (HTTP.response.code == 201) {  
   render SUCCESS or write userid into success.log  
 } else {  
   Read JSON response and render appropriate message OR write userid with the corresponding http response into failed.log  
 }  
 #Do not exceed yammer api rate limit - https: //developer.yammer.com/docs/rest-api-rate-limits. So sleep 
 sleep(2 sec)  
 increment++  
 }  

In plain English, what we have done so far are:

  • Read userIDs from the csv that was obtained from data export 
  • Iterate through the all the users individually 
  • Impersonate each user so as to get a pre-authorized token 
  • Make the user add him/herself to the group. Yah! 

References 

Was this information helpful? Please leave a feedback. 


Imagine Cup 2015 World Championship July 31

$
0
0

The #imaginecup is happening! There will be an exciting live webcast by Microsoft CEO Satya Nadella and Thomas Middleditch will be an #imaginecup judge!

Fore more information: https://www.imaginecup.com/worldchampionship

Thousands of coding hours all come down to this. Who will win it all and be crowned the next Imagine Cup World Champion by Microsoft CEO Satya Nadella? Tune in to the live webcast and watch as the three first-place teams battle it out onstage before a panel of judges that includes Thomas Middleditch, star of the hit HBO show “Silicon Valley.”

Who: The first place teams in Games, Innovation and World Citizenship
What: World Championship webcast
When: 12:00N PT, July 31
Where: www.imaginecup.com
Why: To meet the next student tech genius!

ADFS and SAP Integration

$
0
0

In a recent project I was working on ADFS with multiple applications and customer also had SAP to be integrated with ADFS. Its quite simple, you have to just import SAP metadata into relying party trust and then map Name ID on the SAP side to the SamAccountName on the ADFS side and it works.

Read my favorites blogs:

Assigning File Share permissions using Power Shell

Disk Read Error when migrating virtual machine from one cluster to another

Designing a backup less Exchange 2010 Architecture

Step by step guide for upgrading Active Directory from Microsoft Windows 2008 R2 to Microsoft Windows Server 2012 R2

Microsoft Exchange 2010 Test cases

Microsoft Exchange 2013 and ADRMS Integration

Free Webinar: Introduction to Azure Data Factory

$
0
0

In a fast changing data landscape where unstructured and structured data originate from many cloud and on-premises sources, Azure Data Factory (ADF) lets you process on-premises data such as SQL Server alongside cloud data such as Azure SQL DB, blobs, and tables. These data sources can be composed, processed, and monitored through simple, available, fault-tolerant data pipelines. This free webinar will walk you through key capabilities of ADF and the scenarios where it can be applied.

To register, click here or on the picture below:


ML Blog Team

10 razones para emocionarse por jugar en Windows 10

$
0
0
Windows 10 ha llegado, ¿Y adivinen qué? ¡Trae todo tipo de increíbles ventajas para jugar! Aquí hay diez razones por las que deberían instalar Windows 10 lo más pronto posible, si ustedes son el tipo de personas que quieren increíbles experiencias de juego en su vida. 1. DirectX 12: Este pedazo mágico de software los ayudará a aprovechar al máximo el hardware que impulsa sus juegos. Si ya tienen una tarjeta gráfica de gama alta, prepárense para despegar de su asiento cuando vean el tipo de poder...(read more)

Windows 10 now available in 111 languages

$
0
0
If you didn't notice already, Windows 10 has now launched and is available as a free upgrade in 111 languages. We are in the process of uploading the final Windows 10 terminology and translations to the Terminology Search section of the Microsoft Language Portal . This will allow you to find the right translations of the new Windows 10 features in these 111 languages including terms and strings for the two new language versions that were added to Windows 10: French Canadian and Spanish Mexican...(read more)

Where did Power BI Admin go within O365 Admin Center?

$
0
0

NOTE: Information good as of 7/31/2015 and is subject to change!

The display of Power BI under the ADMIN area within the Office 365 Navigation bar is based on the licenses you have assigned to your user account.  If you have either Power BI (Free) or Power BI Pro assigned to your account, you will not see Power BI under the ADMIN area of the Navigation bar.

SNAGHTML645b612

Without the Power BI (Free) or Power BI Pro license, and having the old Power BI for Office 365 license assigned, you will see the following.

SNAGHTML6491cec

Power BI Admin Center is not part of the new service offering.  It is part of the old Power BI for Office 365.  So, if you assign a license for the new service, we hide that within the ADMIN area.

Power BI Admin Center is still usable and available if you have the Power BI for Office 365 license assigned to your user.  You can reach the Power BI Admin Center using the following URL.

https://admin.powerbi.com

Adam W. Saxton | Microsoft Business Intelligence Support - Escalation Services
@GuyInACube | YouTube | Facebook.com\guyinacube

PowerTip: Download Links from Webpage with PowerShell

$
0
0

Summary: Use Windows PowerShell to download links from a webpage.

Hey, Scripting Guy! Question How can I use Windows PowerShell to easily download links from a webpage that has a lot of links I want?

Hey, Scripting Guy! Answer Use Invoke-WebRequest and select Links and href, for example:

(Invoke-WebRequest -Uri "http://www.scriptingguys.com").Links.Href


Promotion of Office 365 Practice Accelerator for SMB has been extended. 'No charge' through Sept 2015!!

$
0
0
Jeff 400x400
Jeff Stoffel

Office 365 Practice Accelerator for SMB

Microsoft Practice Accelerator provides you with Microsoft Services best practices and resources to help you accelerate your time to market, increase customer wins and retention, and improve delivery quality through proven guidance.  This Office 365 Practice Accelerator for SMB typically costs five partner advisory hours.  For a limited time, through the end of October 2015, there is no cost to attend the Office 365 Practice Accelerator for SMB offering.

In this Practice Accelerator, you will learn the fundamental deployment principles and processes that lead to repeatable successful deployments of Office 365 for small and medium business customers. We will cover the new features and tools provided for Exchange Online, SharePoint Online, OneDrive for Business, Yammer, and Lync Online deployments and migrations, as well as present the approach required to craft a solution in as little time as possible. You will be provided with next steps for delivery readiness of individual products and features, ensuring your delivery practice can quickly move from the vision and plan stage into the pilot, deployment/migration, and enhancement phases.  image

After completing this training, you will be able to:

  • Understand cloud partner business opportunities
  • Sign up for and use your internal-use rights (IUR)
  • Demonstrate, position, and pilot Office 365 for your customers
  • Plan for infrastructure, identities, and client deployment requirements
  • Plan for Office 365 workloads including Exchange Online, Lync Online, SharePoint Online, and OneDrive for Business
  • Plan for user adoption of Office 365

Who is it for?
This course is targeted to presales technical specialist, technical specialist, consultant, practice manager, or IT manager roles at Microsoft Partner Network member organizations.

Course syllabus

Introduction

  • Cloud overview
  • Cloud partner business opportunities
  • Use your internal-use rights (IUR)

Getting started

  • Office 365 plans
  • Deliver a demo, activate the trial, and deploy the first pilot
  • Infrastructure planning

Exchange Online service

  • Exchange Online planning
  • Onboarding/migration for Exchange Online
  • Enhance your messaging environment
  • Monitoring and reporting for your Exchange environment

  SharePoint/OneDrive/Yammer services

  • SharePoint Online, OneDrive, and Yammer planning
  • Onboarding/migration for SharePoint Online
  • Enhancing your collaboration environment
  • Monitoring and reporting for your collaboration environment

  Lync Online service

  • Lync Online planning
  • Onboarding/migration for Lync Online
  • Enhance your communication environment
  • Maintain

  User adoption

  • Client deployment
  • Client usage scenarios
  • End user training

  Consume online and learn more here:  

https://support.microsoft.com/en-us/kb/3025995

Announcement: Azure RMS Documentation Library Update for July 2015

$
0
0

Hi everybody

As per Carol’s introduction post, she's letting you know what's new and hot in the docs for this month. And July has been a very hot month for us!

Reminders: Follow us on twitter (@TheRMSGuy) and join in our RMS peer community at www.yammer.com/AskIPTeam.

Cheers, 

   Dan (on behalf of the RMS team)


The Documentation Library for Azure Rights Management has been updated on the web and the latest content has Updated: July 1, 2015 (or later) at the top of the page.

Summary of the documentation available: Getting Started with Rights Management | Configuring Rights Management | Using Rights Management | Administering Rights Management by using Windows PowerShell

Plus, the Rights Management sharing application guides (admin guide and user guide) and FAQs (for Windows and mobile platforms).

With all the new releases coming out that support Rights Management, the documentation page to watch and refresh at the moment is Requirements for Azure Rights Management - you might want to add this to your favorites! For more information about some of the releases, check out our blog posts if you haven't already. For example: Office 2016 for Mac available now with Azure RMS support! and Office for iPad available now with Azure RMS support!

In addition, when Office for Mac 2016 released, we updated the Active Directory Rights Management Services Mobile Device Extension documentation, to let AD RMS customers know that this latest Office version requires our latest version of the mobile device extension. If you're not sure how to confirm whether your installed version supports Office for Mac 2016, we've added instructions how to check.

We value customer feedback and try to incorporate it when possible.  Although we can't promise to make the docs perfect for everybody, we are committed to continual improvement.  If you have any feedback about the docs for the RMS sharing application, for the mobile device extension, or for Azure RMS, email AskIPTeam@Microsoft.com.

 

What's New for the RMS Sharing Application Documentation, July 2015

There are no technical changes to the sharing application documentation since the last update (June 2015), except to document a new release for minor fixes. For more information, see Rights Management sharing application: Version release history.

 

What's New in the Documentation Library for Azure Rights Management, July 2015

The following information lists the topics that contain significant changes since the last update (June 2015).

How Applications Support Azure Rights Management

- In the SharePoint Online and SharePoint Server section, removed the limitation that you cannot share with people outside your organization. With recent changes to SharePoint, you can now share by using a work or school account, or a Microsoft account.

Requirements for Azure Rights Management

- Although Windows 10 is now added as a supported operating system, the RMS sharing application doesn't yet support this latest Windows release, which is reflected in the Applications section (the Important callout box).  This restriction should be resolved very soon!  In addition, the Client device capabilities section has multiple updates for the recent releases:

  • Office Mobile apps and Siemens JT2Go: JTfiles are added for Windows 10
  • Office for iPad and iPhone is added for iOS (Word, Excel, PowerPoint)
  • Office 2016 for Mac is added for OS X  (Word, Excel, PowerPoint, and for Email)

Frequently Asked Questions for Azure Rights Management

- New entry:

  • When I share a protected document with somebody outside my company, how does that user get authenticated?

Configuring Applications for Azure Rights Management

- Updated the following sections:

Import-AadrmTpd

- Updated the -ProtectionPassword<SecureString> parameter description, for information about how to specify special characters (such as symbols) for paswords when you use ConvertTo-SecureString. Chances are, if you have a strong password, you will use special characters.  If you do not escape these characters when you specify the password or surround them in single (not double) quotes, PowerShell strips them out so the password will fail and you see the error messages Trusted Publishing Domain data is corrupted and The remote server returned an unexpected response: (400) Bad Request.


New Data Loss Prevention documentation

$
0
0

Data Loss Prevention (DLP) is a technology that can detect and prevent sensitive information types from being sent outside of an organization. DLP rules will often need tweaking, and this goes hand in hand with troubleshooting false positive detections. We recently published new TechNet documentation that will make this troubleshooting DLP much easier!

...(read more)

Leveraging language diversity: Microsoft employees hacking for good

$
0
0
Several projects during this week’s annual Hackathon for Microsoft employees focused on using machine translation technology from Microsoft Translator to connect people around the world— whether in business contexts or to help travelers communicate more easily . One of the projects— HackForGood — goes beyond just the technology. It aims at leveraging internal Microsoft employees’ language skills to help non-profits such as Translators Without Borders get information...(read more)

¡Tenemos ganador! Imagine Cup 2015 ha llegado a su fin

$
0
0
Después de recorrer un largo camino para llegar a la gran final, sólo tres equipos tuvieron la oportunidad de competir por el primer lugar en Imagine Cup 2015, la competencia y programa global tecnológica de estudiantes que brinda oportunidades para los estudiantes de todas las disciplinas a que hagan equipo y utilicen su creatividad, pasión y conocimiento en tecnología para crear aplicaciones, juegos y soluciones integradas que puedan cambiar la forma en que vivimos...(read more)
Viewing all 17778 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>