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

Discovery and Risk Assessment Sever 2013 – Risk Criteria Overview for Access databases

$
0
0

The Risk criteria for Access databases in Discovery and Risk Assessment Server 2013 are listed in the table below. These settings are for complexity only.  By default, all Access database files will be classified as “material” for the Materiality rating.

 

Criteria Operator Value Score
Tables > 5 5
Tables > 10 5
Tables > 15 5
Queries > 5 5
Queries > 10 5
Queries > 15 5
Forms > 5 5
Forms > 10 5
Forms > 15 5
Modules > 0 10
Modules > 5 10
Modules > 10 10

 

So, for example, if an Access database has greater than 5 tables, it will get 5 points. If it also has greater than 10 tables, it will get an additional 5 points toward complexity.

 

Complexity Definition

Low <= 10
Medium <= 20
High > 20

 

Materiality Definition

All Access database files are assigned a rating of “material”.


Windows Time Data Update for Egypt DST change now available

$
0
0

Please visit the KB article for more details on this update for Windows 8.1, Server 2012 R2 and below.

For Windows 10, please install the latest cumulative update (LCU). Details of the LCU can be found here.

How big was this month’s Office ProPlus update?

$
0
0

Office 365 updates are designed to be very network bandwidth friendly. There is Binary Delta Compression that occurs so long as the machines are staying current and Office has built in throttles to prevent every machine from trying to update at the same time. However, IT admins will sometimes still need to monitor the size of the monthly updates very closely. Here is how to determine how large the update for Office ProPlus will be.

Step 1.
Download Process Monitor from the Windows Sysinternals collection here:
https://technet.microsoft.com/en-us/sysinternals/bb896645.aspx

Step 2.
When you launch Process Monitor the filter menu may auto load but if not, click on Filter > filter to open the filter menu. In here Exclude the following Event Classes:

  • Registry
  • File System
  • Process

And only include the “OfficeClicktoRun.exe” Process Name. Your filter should look something like this:

filter


Step 3.

Start Process Monitor and launch the manual update process by clicking “update Now” in the File > Account menu of any Office Click-to-Run app. We will see the updates downloading and data filling in the Procmon log.

downloading office


Step 4.

Once the update finishes, stop the Procmon trace and then check for the network traffic summary by going to Tools > Network Summary.

total-bytes

In my example I was on the July version of Deferred Channel – 16.0.6741.2056 and then updated to the August version – 16.0.6741.2063. As we can see, this update is 167,829,264 bytes, or roughly 167 MB of data.

PowerShell Basics: Enabling Auto Notification Of Specific File Changes

$
0
0

Recently I was asked…

 

“How do I send an email automatically whenever a change is made to a specific file?”

 

There are many 3rd party solutions to achieve this. I however wanted to take the opportunity to learn of a way to complete this task via PowerShell.  Setting up a file watcher seemed to address the issue and its was actually simple to script.

 

The following was created to watch the intended file for changes:

 

$watcher = New-Object System.IO.FileSystemWatcher
$watcher.Path = 'C:temp'
$watcher.Filter = 'test1.txt'
$watcher.EnableRaisingEvents = $true

$changed = Register-ObjectEvent
   $watcher 'Changed' -Action {
write-output "Changed: $($eventArgs.FullPath)"
}

Creating the file watcher took the utilization of the FileSystemWatcher object. This script specifically watches the entire directory and path for changes. An added filer is added to specify the required file.

 

Next an ObjectEvent is registered to perform an action the watcher detects a change event. This script highlights a simple output however it could easily modified to enable sending of an email or performing some other task.

 

Removing the ObjectEvent is just as easy and can be performed using the following script:

Unregister-Event $changed.Id

333 tipů pro Office 2016 (136. – 140.)

$
0
0

136.     Jak nastavit formátování na základě podmínky?

Excel nabízí jednu alternativu ke standardnímu formátování – tzv. podmíněné formátování. Na rozdíl od funkcí je při splnění podmínky výsledkem nikoliv výsledek vzorce, ale vizuální změna formátu buňky – tučné písmo, odlišná barva pozadí, jiné orámování apod.
Nastavení podmíněného formátování se provádí následovně:
  1. Otevřete si tabulku, u které chcete nastavit podmíněné formátování.
  2. Označte do bloku hodnoty, které chcete naformátovat.
  3. Na pásu karet klepněte na kartu Domů a ve skupině Styly na Podmíněné formátování.
  4. V rozbalené nabídce klepněte na Nové pravidlo.
 
Excel zobrazí okno Nové pravidlo formátování, v němž máte možnost nastavit přesně pravidla podmíněného formátování tak, aby plně odpovídalo vašim potřebám.

137.     Jak rychle naformátovat buňku?

Excel má pro vás (stejně jako v případě formátu tabulky, viz další tip) připraveny desítky stylů buněk k okamžitému použití. Chcete-li použít již vytvořený, postupujte následovně:
 
  1. Označte do bloku buňky, kterým chcete přiřadit nový styl.
  2. Na kartě Domů ve skupině Styly rozbalte klepnutím na šipku dolů nabídku všech stylů.
  3. Na vybraný styl klepněte.
  4. Styl bude použit na předem označené buňky.

138.     Jak rychle naformátovat celou tabulku?

V minulém tipu jste se dočetli, jak rychle naformátovat jednu buňku. Ačkoliv by styl buňky šel použít i na více buněk najednou, a tím pádem i na celou tabulku, Excel má pro formátování tabulky jako celku připravené vlastní styly. Najdete je na kartě Domů ve skupině Styly pod příkazem Formátovat jako tabulku.

139.     Jak vložit nový řádek/sloupec?

Nový řádek lze do listu vložit následujícím způsobem kamkoliv, a to i do již vytvořené tabulky:
  1. Klepněte pravým tlačítkem myši na název řádku (tj. jeho číslo), před který chcete vložit nový prázdný řádek.
  2. V zobrazené nabídce zvolte položku Vložit buňky.
Řádek bude vložen. Přitom vlastnosti buněk na novém řádku převezme Excel z řádku, na kterém jste stáli kurzorem. Zůstane tedy zachován typ a velikost písma, barvy, čáry, ohraničení, zarovnání buněk atd.
Také sloupec lze rovněž vložit do již hotové tabulky a to takto:
  1. Klepněte pravým tlačítkem myši na název sloupce, před který chcete vložit nový prázdný sloupec.
  2. V zobrazené nabídce zvolte položku Vložit buňky. I zde platí, že veškeré vlastnosti právě vloženého sloupce budou převzaty ze sloupce, na kterém jste stáli kurzorem.
Vkládat řádky a sloupce do tabulky můžete také pomocí příkazu Vložit, který najdete na ve skupině Buňky na kartě Domů.
Druhou možností je využít příslušné příkazy na kartě Domů ve skupině Buňky.

140.     Jak odstranit řádek/sloupec?

Odstranit jeden celý řádek nebo sloupec je velice snadné:
  1. Klepněte pravým tlačítkem na název sloupce nebo řádku, který chcete odstranit.
  2. V otevřené podnabídce klepněte na položku Odstranit.
Opět i zde můžete využít na kartě Domů ve skupině Buňky příkaz Odstranit.
Autor: Karel Klatovský

Wiki Life: Searching the Wiki Ninjas archives

$
0
0

Magnifying GlassDid you ever read a Wiki Ninjas blog article and then try to find it again? I am often referring to items I read in the past. This usually means scrolling through pages of old posts trying to find the article.

Well, I am here to tell you there is an easier way to search through the archives of the Wiki Ninjas blog. To begin with, have you ever looked at the right side of the Wiki Ninjas blog landing page? If not, do so now. I’ll wait…..

The sidebar is filled with tools that can help you find past articles. These include:

  • Wiki Ninjas – Categories: Posts categorized by theme day (as long as they are tagged correctly). Did not know there were theme days? See this page for more info.
  • Popular Tags: Find articles by most popular tag. Click a tag to filter the current list by that tag name.
  • Archives: Search articles by month or by year.
  • Search: Perform keyword searches of past articles. Search within titles and body text.
  • Wiki Blog Calendar: Filter by day in the current month or any previous month.

Each of these tools offer access to the archives so you can read the stock of older blog posts. So get searching and explore the back catalogue today!

by Ken Cenerelli (TwitterBlogMSDN ProfileMVP Profile)

 

 

最新情報: Japan Partner Conference 2016 東京の見どころ【8/17 更新】

$
0
0

jpc

 

8 月 30 日に Japan Partner Conference 2016 東京が開催されます。昨年は FEST 2015 としてお客様向けイベントと一緒に実施しましたが、今年は規模を拡大して再びパートナー向けイベントのみで Japan Partner Conference の形でお届けします。

お客様の購買行動がクラウド・ファーストに全面的にシフトしていく中で、クラウドがなかった時代には考えられなかったようなビジネスチャンスが生まれています。お客様にとっては、クラウドを使っていままで IT を活用できなかったシナリオに IT の力を活用できるようになる「デジタル トランスフォーメーション (変革)」を進めるチャンスですが、パートナーにとってはお客様のデジタル改革を推進する支援をするチャンスが生まれます。このチャンスをつかむためには、いま IT 業界で起きていることを把握して、変革の波に乗れるように自社の商品やチャネルを変革していく必要があります。

今回の Japan Partner Conference 2016 では、お客様のデジタル変革の支援をテーマに「世界を共に変えていく (Transform the world together)」という大きなビジョンを掲げてセッションを構成しています。以下に今年のイベントの特徴と見どころを 3 つ挙げてみました。ご来場の際には参考にしてください。

 

1. 事例パートナーがキーノートやブレークアウトに多数ご登壇

「デジタル変革の理屈はわかるけど、実際にうまくやった他社の事例から学びたい。」そう思っているパートナーの皆様も多くいらっしゃるのではないかと思います。そんなご要望に応えるため、今年は午前中にキーノートセッション、午後に合計 12 のブレークアウトセッションを設けて、多くのパートナーの皆様にご登壇いただく予定です。お客様のデジタル変革の支援で先行しているパートナーの皆様、それから変革のためのパートナー向けソリューションや支援策を提供しているパートナーの皆様にご登壇いただき、進むべき方向について共有をしていただきます。詳細については、登録サイトやこのブログでお知らせしていく予定です。

 

2. 最新の製品情報が満載

今年は、Microsoft 3 ambitions トラックを設けて、Office 365 や Microsoft Azure、そして Windows 10 などに関する最新情報を得られるブレークアウトセッションを設けます。また、キーノートのデモでも、最近追加された新機能をわかりやすく、そして楽しくお伝えしていきます。

 

3. パートナー同士で交流を深める

お客様のデジタル変革をご支援するにあたり、お客様の業務データを取り込むためのセンサーデバイスとの連携が必要になったり、取り込んだデータを機械学習などの新しい方法で分析したり、デジタルマーケティングを通してお客様に訴求したり、といった、新しい分野の取り組みを重ねていく必要があるため、お客様のひとつのソリューションを提供するのに、今まで以上にパートナー同士で連携をして補完しあっていく仕組みが必要になります。

Japan Partner Conference 2016 では、日本におけるマイクロソフトのパートナー向けイベント初の試みとして、Expo (展示会場) を東京でご用意することにしました。Expo 会場では、パートナー同士のネットワークを構築するための場をご提供します。 また、各種デバイスの展示や、ソリューションの特長をわかりやすくご紹介するミニステージ セッションなどを予定しています。 クラウド時代のチャネル構築に必須の仕組み、クラウド ソリューション プロダイバー (CSP) を開始するためのブース、クラウドビジネス全般についての相談ブース、先進的な取り組みを行ったりパートナーの皆さま向けに役立つソリューションを提供している企業のブースもございます。新たなビジネス機会創出と、パートナー様同士のさらなるネットワーク拡大のため Expo 会場にもぜひ積極的にご参加ください。

また、パートナー同士の交流を深める場として特定テーマのパートナー コミュニティが設立されています。たとえば、IoTプロジェクトの共同検証を通じてノウハウを共有するコミュニティである「IoTビジネス共創ラボ 」の分科会である「Pepper ワーキンググループ」のメンバーによるブレークアウトセッションも実施されます。IoT やロボティクスにご興味がある方や関係者とつながりたい方はこの機会にセッションにご参加ください。IoT ビジネス共創ラボの詳細については、こちらをご覧ください。

 

このように、Japan Partner Conference 2016 は、7 月にカナダのトロントで行われた Worldwide Partner Conference 2016 の焼き直しにとどまらず、日本独自の状況や事例もたくさん取りそろえた日本のパートナーの皆さま向けのイベントに仕上がっています。

 

お申込みお急ぎください

Japan Partner Conference 2016 東京は以下の要領で開催いたします。

日時:2016 年 8 月 30 日 (火) 10:00 – 19:30 (受付開始 9:30)

セッション終了後、懇親会 (17:30 – 19:30) を予定しています。

会場:ザ・プリンス パークタワー東京
参加費 : 無料 (事前登録制)
※ 終了時間は変更になる可能性がございます。あらかじめご了承ください。

 

▼ お申し込みはいますぐこちらから

 

Japan Partner Conference 2016 はマイクロソフト パートナー ネットワークに登録済みのパートナーに加え、この機会に新しくマイクロソフトのパートナーになってみようかご検討いただいている企業にも開放されています。いままで競合製品を扱っていたけどマイクロソフト製品も扱ってみようと考えている企業、いままではオープンソースを中心に取り組んできたけれども Azure でオープンソースが動くことを知って興味を持っていただいている企業、もしくはコグニティブサービスや機械学習、IoT などの新しい技術を使って、いままで外販をしていなかったけれども外販をはじめようとしている企業、様々なケースがあると思いますが、そのような場合にはぜひ Japan Partner Conference 2016 にお越しください。マイクロソフト パートナー ネットワークに初めて参加される新規パートナーの皆様は、Expo 会場の「クラウドビジネス相談コーナー」ブースにお越しいただくと素敵な特典をご用意していますので、ぜひお越しください。

 

また、Japan Partner Conference 2016 の見どころについては、引き続きこのブログで詳しくご紹介していきますので、引き続きウォッチしておいてください。

 

【PowerPoint 2016】設計構想&轉化:快速完成質感與動態兼具的簡報!

$
0
0

設計構想(Designer):自動為你設計、排版的好幫手

行程太滿、事情太多,隔天又有個報告需要製作簡報!然而受不了早就看膩的佈景主題,自己慢慢設計又太花時間,又或者對自己的美感沒有自信,怎麼辦?

這時,「設計構想」就會是你的偉大救星啦!只要簡單幾個步驟,自動幫你設計、排版,呈現出質感滿分的簡報供你選擇。

  • 步驟一:插入你想要當成背景圖的照片們
  • 步驟二:點選索引標籤裡〖設計〗,工具列的最右方會有個〖設計構想〗按鈕,點下去就會提供你多個版面選項啦!

是不是超級簡單呢?但有個很重要、不能忘記的一點是:這個功能要在有網路的情況下才能使用喔!讓我們來看看簡單的示範影片吧:

 

轉化(Morph):絢麗的轉場效果,一鍵搞定!

說到 PowerPoint 2016 的新功能,就絕對不能不提新增的轉場效果—「轉化」啦!讓你用最簡單、省時的方式,製作出最絢麗的動畫效果。

  • 步驟一:將你需要轉化的圖形、文字等,分別製作成「移動前」跟「移動後」的兩頁投影片。
  • 步驟二:點擊第二頁的投影片,再點選索引標籤裡〖轉場〗,選擇第二個轉場效果〖轉化〗,轉化就會自動幫你設定兩個投影片之間,所有物件的移動路徑!

看完文字說明後,我們直接來看影片示範吧:(除了移動路徑的安排,轉化還能做到顏色的轉化喔!)

 

找不到功能在哪嗎?沒關係,只要在索引標籤旁的「告訴我您想要執行的動作」,輸入你想尋找的功能,它就會自動幫你執行了喔!

tell me

 

 

 


Support Statement for Microsoft System Center Configuration Manager current branch versions

$
0
0

Have a question about the Support Lifecycle for System Center Configuration Manager current branch? If so you can find the latest on our support model here. Currently Microsoft plans to release updates for System Center Configuration Manager current branch a few times per year with each update version supported for twelve  months from its general availability (GA) release date. Technical support will be provided for the entire 12 months. However, our support structure is now dynamic, evolving into two distinct servicing phases that depend on the availability of the latest current branch version.

  • Security and Critical Updates servicing phase : When running the latest current branch version of Configuration Manager, you will receive both Security and Critical updates.

  • Security Updates (Only) servicing phase: After a new current branch version is released, support for older branches will reduce to Security Updates only for the remainder of the twelve (12) month support lifecycle.

For all the details see Support for System Center Configuration Manager current branch versions. You find can find this as well as support statements for other Microsoft products at the Microsoft support lifecycle page.

J.C. Hornbeck, Solution Asset PM
Microsoft Enterprise Cloud Group

SCOM alert management scenarios

$
0
0

Almost a year ago I wrote a short blog post about SCOM alert handling/management and how I do it .
After writing the initial post back in 2015 my valued colleague Nathan Gau has written an excellent 3 part post about several process related aspects of SCOM alert management. If you do not know these articles: it is definitively a must read!

This week I had an interesting discussion with a customer about SCOM alert management/handling scenarios based on Nathan’s and my posts. During this discussion I found some inconsistencies and some errors in my alert handling scenarios described. Therefore, I have updated this document and will put this up for discussion and as a reference.

When we talk about SCOM alert management and handling, we have to talk about good/recommended and bad practices, how alerts get closed and what happens with the alert source in case of monitor alerts. The following table tries to describe these topics for most (all ?) possible alert scenarios:

SCOM-AlertScenarios

You can download this table as a PDF here.

To sum this table up:

  • Do not close alerts manually if you are not fully aware of the consequences or side effects (e.g. monitors still being in an unhealthy state)!
  • Remember that the stored procedure behind the built-in alert auto closure in SCOM uses the LastModified property of an alert as the timestamp and that it uses ResolutionState <> 255 as a filter regardless of what the SCOM console tells you! See also Kevins excellent post on this topic.
  • Create your own automatic solution, whether it is a SCOM workflow, an Orchestrator runbook or whatsoever which enforces the alert closure policy of your organization and which helps to mitigate bad manual behavior (e.g. by checking each closed monitor alert if the causing monitor is still unhealthy)!
    I will talk about my way of automating SCOM alert closure and health state reset in a later post.

I hope that might help some of you to better understand the alert closure and health state reset process used in SCOM.

Microsoft Teacher Talks

$
0
0

Microsoft Teacher Talks

We’re hosting informal gatherings for teachers across the country to come together and share best practice, as well as the latest news in the education space. This gives teachers like yourself, a chance to hear updates from our Teacher Ambassadors and Expert educators about how Microsoft technology can enable better learning experiences for your students.

We are having them all over the country so make sure you sign up for the area that best suits you! Auckland educators, sorry we don’t have an event for you to sign up for currently but don’t worry we have some coming up soon.

New Plymouth
Tuesday 23rd August
4-6pm
Register
Taupo
Tuesday 30th August
4-6pm
Register

Hawkes Bay
Thursday 1st September
4-6pm
Register

Nelson
Tuesday 6th September
4:30-6:30pm
Register

Christchurch
Thursday 15th September
5-7pm
Register

We’ve got one of these events coming up near you, so register now! We’d love to see as many of you as possible.

Akamai 提供 Azure CDN のお客様も HTTP/2 の利用が可能に

$
0
0

執筆者: Manling Zhang (Program Manager, Azure Media Services)

このポストは、8 月 15 日に投稿された Announcing HTTP/2 support for all customers with Azure CDN from Akamai の翻訳です。

 

このたび、Akamai 提供の Azure CDN のお客様にも HTTP/2 をご利用いただけるようになりました。この機能は既定で有効で、既存および新規のすべての Akamai 標準プロファイル (Azure ポータルから有効化) で追加費用なしでご利用いただけます。

HTTP/2 は Web ページの読み込み速度とユーザー エクスペリエンスの最適化が図れるよう設計されており、主要な Web ブラウザーはどれも HTTP/2 をサポートしています。多くのブラウザーがサポートするのは HTTP/2 over TLS のみですが、このプロトコルは HTTP や HTTPS に対応しています。

HTTP/2 の主なメリット

  • 多重化と同時並行処理: 同じ TCP 接続上で複数のリクエストを送信できます。
  • ヘッダーの圧縮: ヘッダー サイズの縮小により、転送時間が短縮されます。
  • ストリームの優先度設定と依存関係: リソースの優先度を設定して、重要なデータを先に転送できます。
  • サーバー プッシュ (現時点では未対応): サーバーが事前にレスポンスをクライアント キャッシュに “プッシュ” できます。

今後の対応

マイクロソフトでは今後数か月にわたって、Verizon 提供の Azure CDN でも HTTP2 をサポートするために取り組みを行っていく予定です。

参考資料

Azure CDN に追加を希望する機能がございましたら、お気軽にこちら (英語) までフィードバックをお寄せください。

SQL Database と SQL Data Warehouse で Azure AD 認証の一般提供を開始

$
0
0

執筆者: Mirek Sztajno (SQL サーバー セキュリティ担当シニア プログラム マネージャー)

このポストは、8 月 4 日に投稿された GA for Azure AD authentication in SQL Database and SQL Data Warehouse の翻訳です。

 

このたび、Azure SQL Database および Azure SQL Data Warehouse で Azure Active Directory (Azure AD) 認証の一般提供が開始されました。Azure AD は SQL 認証に代わる認証方法で、ID とグループの一元管理を可能にします。Azure AD 認証により、フェデレーション ドメインで SQL Database や SQL Data Warehouse を使用する場合にシングル サインオンを利用できます。Azure AD は、増加を続ける Azure サービスやその他のマイクロソフト サービスに対する認証に使用できるため、お客様は管理対象のユーザーとパスワードが増えるのを防ぐことができます。その他にも次のような利点があります。

  • アクセス許可の管理がずっとシンプルに: 基盤となるデータベースにアクセスすることなく、Azure AD グループ経由でデータベースのアクセス許可を制御できるようになります。
  • 以下をサポート:
    • ユーザー名とパスワードを使用する Azure AD の管理対象ドメインおよびフェデレーション ドメイン。パスワードのローテーションは一元化され、Azure AD から自動的にトリガーされます。
    • Azure AD のフェデレーション ドメインや、ドメインに参加しているマシン上のクライアントでの統合 Windows 認証の利用。これにより、参加サービスでのシングル サインオンが可能になります。また、VPN を使用したリモート接続でも統合 Windows 認証がサポートされます。
    • JSON Web Token (JWT)。SQL Database (サービス アカウントなど) に対して、中間層アプリケーションの Azure AD 認証を実行することができます。

Azure AD 認証を使用するには、Azure AD 管理者を設定し、Azure AD の ID にマッピングされた SQL の包含データベース内のユーザーをプロビジョニングする必要があります。Azure AD 管理者の作成には、PowerShell、REST API、Azure ポータルのいずれかを使用します。

以下の画面では、Azure AD グループを代表する Azure ポータルの AD 管理者である DBA と、完全なサーバー管理者としてのアクセス許可が付与されているメンバーの rachelb@contososales.onmicrosoft.com を確認することができます。

次の画面では、Azure AD SQL 管理者 (rachelb@contososales.onmicrosoft.com) が ContosoSales という SQL Database に接続しています。右側のクエリ ウィンドウ内のサンプル T-SQL コードにより、SalesReps という名前の Azure AD グループにマッピングされた SQL の包含データベース内の同名のユーザー (SalesReps) をプロビジョニングします。その結果、AD グループ SalesReps のすべてのメンバー (接続ウィンドウに表示されているユーザーの joep@contososales.onmicrosoft.com など) が AD 資格情報 (ユーザー名とパスワード) を使用して ContosoSales に接続できるようになります。SSMS に “Active Directory Password Authentication” という新しい認証オプションが表示されている点に注目してください。

次のステップ

Service Manager #LyncUp calls

$
0
0

We are currently heads down working towards the System Center 2016 launch. As such, on June 24th, we sent out a cancellation notice for the Service Manager #LyncUp calls, with the plan to resume it post System Center 2016 GA (General Availability). Meanwhile, it has been brought to our attention that on August 16th, a few customers dialed into Skype expecting the regular session. In this regard, we sincerely apologize for any inconvenience caused to any of our Customers, MVPs and Partners. We request you to go ahead and delete any existing invites on your calendar. Please continue to share your feedback/comments/queries via https://connect.microsoft.com/WindowsServer/Feedback.

333 tipů pro Windows 10 (41-45)

$
0
0

1

41. Setřeste je

Zajímavou funkcí, která je součástí pracovní plochy ve Windows 10 je funkce nazvaná Shake. Umožňuje vám v případě více otevřených oken setřást (minimalizovat) všechny okna na hlavní panel a ponechat si otevřené pouze jediné. Stačí, když okno aplikace, které si přejete ponechat, chytnete za horní lištu a rychlými pohyby myši s ním zatřesete doleva a doprava.

42. Jak vypnout funkci Shake?

Funkce Shake slouží k „setřesení“ všech otevřených oken kromě aktivního na hlavní panel. Pokud vám tato funkce vadí a často ji aktivujete nevědomky, je možné ji pomocí úpravy registru vypnout:

1. Spusťte si Editor registru (Start – regedit).

2. Otevřete si následující umístění:

HKEY_CURRENT_USERSoftwarePoliciesMicrosoftWindows

3. Klikněte pravým tlačítkem na položku Windows a vyberte příkaz Nový – Klíč a pojmenujte jej Explorer.

4. Nyní klikněte na položku Explorer a přes příkaz Nový vytvořte novou DWORD hodnotu (32-bit) a pojmenujte ji NoWindowMinimizingShortcuts a nastavte její hodnotu na 1. Po odhlášení a přihlášení již funkce Shake nebude aktivní.

43. Doleva i doprava – Snap

Zatímco někteří uživatelé považují předchozí funkci spíše za úsměvný, druhá funkce nazvaná Snap je velice přínosná a zejména v dnešní době větších LCD monitorů si uživatelé říkají, jak bez této funkce mohli dříve pracovat. Běžnou praxí v dnešní době je, že na jedné straně obrazovky máte otevřenu jednu aplikaci, na druhé polovině druhou. Dříve jste toto rozložení museli pracně dělat ručně, bylo nutné okno chytit, přesunout ke kraji a změnit mu šířku a výšku tak, aby zabíralo alespoň orientačně požadovanou půlku obrazovky. Nicméně díky funkci Snap stačí okno aplikace chytnout za horní lištu a zcela přesunout k pravému nebo levému okraji. Po puštění okna se velikost okna automaticky přizpůsobí přesně jedné polovině obrazovky.

Ve Windows 10 byla tato funkce ještě více vylepšena a využívá všech čtyřech rohů obrazovky jako příchytných bodů pro jednotlivé kvadranty. Pokud tedy přesunete aplikaci do jednoho ze čtyřech rohů, aplikace se sama umístí do příslušného kvadrantu.

44. Jak vypnout funkci Snap?

Další funkcí na ploše je Snap, která umožňuje rychle přichytit otevřené okna k levé nebo pravé okraji polovině obrazovky (po chycení okna kurzorem myši a přesunu k jednomu z okrajů), případně jej maximalizovat (po přesunu k hornímu okraji). Pokud ale tuto funkci chcete vypnout, postupujte takto:

1. V Ovládacích panelech si otevřete položku Centrum usnadnění přístupu a v zobrazeném okně klikněte na položku Usnadnit používání myši.

2. V nově otevřeném okně zaškrtněte v dolní části položku Zabránit automatickému uspořádávání oken při přesunutí na okraj obrazovky a klikněte na OK.

45. Minimalizace a maximalizace oken

Pro změnu velikosti oken a jejich minimalizaci a maximalizaci lze použít první dvě ikony ze známé trojice ikon v pravém horním rohu desktopových aplikací. Kromě tohoto způsobu lze okno také maximalizovat tak, že jej chytnete za horní lištu a přesunete k hornímu okraji obrazovky.

Pro uživatele preferující klávesové zkratky přijdou jistě vhod zkratky pro minimalizaci a maximalizaci otevřených oken.

Win + šipka nahoru – maximalizuje aktuální okno

Win + šipka dolů – minimalizuje aktuální okno

– Karel Klatovský


Microsoft Azure について覚えておくべきオープンソースに関する情報一覧【8/18 更新】

$
0
0

マイクロソフトのクラウド戦略は、オープンで拡張可能なクラウド プラットフォームを提供することです。ハイブリッド クラウドにより、お客様に自社のデータセンターとマイクロソフトのグローバルなデータセンターの中にエンタープライズ グレードのテクノロジーを導入することができます。

もしかするとご存じない方もいるかもしれませんが、Microsoft Azure 上には、広範囲のオープンソース、およびコミュニティ ソフトウェア ソリューションを展開することが可能です。Azure でオープンソースを利用することにより、お客様のクラウド投資を拡張することが可能です。Azure 上の仮想マシンの約 1/3 では Linux が利用されており、Azure Marketplace では、1,000 以上のLinux イメージが公開されています。このように、Microsoft Azure ではオープンソース テクノロジーを何百万ものお客様が依存、信頼して利用していることがわかります。

 

Microsoft Azure とオープンソース戦略についてお客様にご紹介するときは、以下の点を考慮してみてください。

 

マイクロソフトのアプローチは、お客様がオープンソースに既に行っている投資を無駄にせず、それらを乗せることができる信頼できるクラウドプラットフォームを提供することです。選択の自由、相互運用性、そして信頼性はすべてのお客様とパートナーにとって重要なことです。

マイクロソフトは様々なオープンソース プロジェクトに専属リソースを投入してかかわっており、オープンソースへの取り組みにコミットしています。

 

オープンソースへの貢献を始める

オープンソース ライセンス

オープンソースライセンスと呼ばれるものを理解すること、そしてこのライセンスがどのようにレビュー、承認されるのかを理解することは重要です。 オープン ソース ライセンスについての情報 (英語)

GitHub

オープンソースにおいてはコミュニティと貢献が重要な原則です。GitHub を通してオープンソースに貢献することができます。GitHub では数百万ものオープンソース プロジェクトが運営されています。マイクロソフトもいくつかのリポジトリを持っており、ドキュメント、SDK、テンプレート、ソースコード、などの情報が入手できます。もし貢献することにご興味がある場合、以下をご参照ください。

OS とツールの選択肢を広げる

Windows 上の Bash on Ubuntu について知る

Windows 上の Bash on Ubuntu は Windows から Linux と人気のあるオープンソース ユーティリティツールへのアクセスを可能にします。これは、Linux 仮想マシンで動いているわけではなく、Linux のシステムコールを対応する Windows カーネル関数にマッピングすることで実現しています。

Azure のコマンドライン インターフェイスについて知る

Azure を操作するには 3 つの方法があります。

  • Azure ポータル
  • コマンドライン – PowerShell または Azure Command-Line Interface (Azure CLI)
  • Azure SDK

Azure CLI はクロスプラットフォームです。どの OS を使っているかには寄りません。

 

モダン データセンターと企業向け Linux

Red Hat Enterprise Linux は業界をリードする、モダン データセンターのオープン ソース プラットフォームです。マイクロソフトと Red Hat のパートナーシップによって、お客様は既存の Red Hat への投資を最大限活用することができるようになりました。また、ハイブリッド展開モデルにより、アプリケーションを実行する場所として、お客様はオンプレミスかクラウドを選択することができるようになりました。現在、お客様は Red Hat サブスクリプションを Azure に移行することができ、統合されたエンタープライズ グレードのサポートを受けることができます。ほかのソリューションももう間もなく利用できるようになります。

Red Hat Enterprise Linux on Azure は以下の価値をお客様に提供します。

  • フレキシブルな利用 (オンデマンド利用やサブスクリプションの移行)
  • 安全で安定したハイブリッドクラウドのモダン プラットフォーム
  • 一貫性と標準化によるコスト削減
  • 一貫性のあるハイブリッド クラウド管理 (Red Hat CloudForms)

パートナーが事業継続性を保ちながら移行を行うには、Enterprise Linux サポートを受ける必要があります。Red Hat と マイクロソフトのパートナープログラムに加入して効果と効率を最大化してください。

 

パートナーのビジネス機会とリソース

お客様はデータセンターをモダンにするためのパートナーを求めています。現在、Azure 上の 30% の仮想マシンで Linux が実行されており、新しい仮想マシンの 50% が Linux を実行しています。これはとてつもないビジネス機会です。直近のビジネス機会は、このようなお客様を支援して企業向け Linux で企業向けのハイブリッド インフラを実行できるようにすることです。

モダン データセンターでオープンソース テクノロジーを活用するために以下のリソースをご活用ください。

貴社のマイクロソフト パートナー プログラム特典とコンピテンシー特典を利用する

Microsoft Azure 製品とマーケットプレース

 

そのほかの関連記事

 

JPC 2016 におけるオープンソース セッション

8/30 に東京で実施される Japan Partner Conference 2016 においても、オープンソースに関する話題が盛りだくさんです。午前中のキーノートセッションでは、レッドハット株式会社 代表取締役社長 望月様にご登壇いただき、日本での Azure と Red Hat で広がるビジネスの可能性についてお話しいただく予定です。また、午後のブレークアウトセッションでは、日本マイクロソフト新井によるセッション「WMS-02: デジタル トランスフォーメーションを牽引する “Azure + OSS”」があります。クラウド上で Red Hat をはじめとするオープンソーステクノロジーを実行することにご興味のある方は、ぜひこれらのセッションにご参加ください。

▼ Japan Partner Conference 2016 にいますぐ登録する

jpc

 

 

『Forza Horizon 3』収録車種アップデート – Week 5

$
0
0

NISGTR_FH3_CarAnnounce_l

前回の収録車種アップデートでは、オーストラリア内陸部のアウトバックを走る上で走破性に長けたクルマを公開したが、今回は長距離ドライブに最適なロード カーやライバルよりも早く走るクルマを公開。国産車からは世界的に絶大な支持を得る 2017 Nissan GT-R、ラグジュアリーかつ高パフォーマンスを持つ 2016 Aston Martin Vantage GT12、そしてアメリカのスーパーセダン 2016 Cadillac CTS-V Sedan などを含む 30 車種を追加し、本日時点の公開車種は 307/350 車種。オーストラリアの大地で、魅惑のロード トリップを楽しもう。
 

ASTVantageGT12_FH3_CarAnnounce
CADCTSVSedan_FH3_CarAnnounce

 

Week 5 公開車種リスト

年式 メーカー 車種名
2016 Abarth 695 Biposto
2002 Acura RSX Type-S
2016 Aston Martin Vantage GT12
1986 Audi #2 Audi Sport quattro S1
2015 Audi TTS Coupé
2011 BMW Z4 sDrive35is
2013 BMW M6 Coupe
2016 Cadillac CTS-V Sedan
1967 Chevrolet Chevelle Super Sport 396
2014 Chevrolet Super Sport
1969 Dodge Charger Daytona HEMI
2003 Ferrari 360 Challenge Stradale
1984 Ferrari 288 GTO
2010 Ferrari 599 GTO
2012 Ferrari F12berlinetta
1953 Ferrari 500 Mondial
1969 Fiat Dino 2.4 Coupe
1993 Ford SVT Cobra R
1940 Ford De Luxe Coupe
2003 Ford Focus RS
1981 Ford Fiesta XR2
1988 Holden VL Commodore Group A SV
2005 Honda NSX-R
1993 Jaguar XJ220
1971 Nissan Skyline 2000GT-R
2017 Nissan GT-R
1968 Opel GT
2011 Subaru WRX STI
1980 Subaru BRAT GL
2016 W Motors Lykan Hypersport

 

公開済み車種リスト一覧

年式 メーカー 車種名 備考
2016 Abarth 695 Biposto  
1980 Abarth Fiat 131  
2010 Abarth 500 esseesse  
1968 Abarth 595 esseesse  
2002 Acura RSX Type-S  
2001 Acura Integra Type-R  
2007 Alfa Romeo 8C Competizione  
1965 Alfa Romeo Giulia Sprint GTA Stradale  
1968 Alfa Romeo 33 Stradale  
2014 Alfa Romeo 4C  
1992 Alfa Romeo Milano Quadrifoglio Verde  
1971 AMC Javelin AMX  
1970 AMC Rebel "The Machine"  
2013 Ariel Atom 500 V8  
2016 Ariel Nomad  
2016 Aston Martin Vantage GT12  
1964 Aston Martin DB5  
2010 Aston Martin One-77  
2012 Aston Martin Vanquish  
1977 Aston Martin V8 Vantage  
1998 Aston Martin V8 Vantage V600  
2013 Aston Martin V12 Vantage S  
2015 Audi TTS Coupé  
1986 Audi #2 Audi Sport quattro S1  
2006 Audi RS 4  
1983 Audi Sport Quattro  
1995 Audi RS 2 Avant  
2011 Audi RS 5 Coupé  
2013 Audi RS 4 Avant  
2013 Audi R8 Coupé V10 plus 5.2 FSI quattro  
2015 Audi S1  
2014 Audi #45 Flying Lizard Motorsports R8 LMS ultra Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2016 Audi R8 V10 plus リワード カー (Tier 4)
2014 BAC Mono  
2015 Baldwin Motorsports #97 Monster Energy Trophy Truck  
2013 Bentley Continental GT Speed  
2013 BMW M6 Coupe  
2011 BMW Z4 sDrive35is  
1957 BMW Isetta 300 Export  
2011 BMW 1 Series M Coupe  
1997 BMW M3  
2005 BMW M3  
2008 BMW M3  
1981 BMW M1  
1973 BMW 2002 Turbo  
1986 BMW M635CSi  
2011 BMW X5 M  
1988 BMW M5  
2012 BMW M5 リワード カー (Tier 5)
1995 BMW M5  
2014 BMW M4 Coupe  
2014 BMW M235i  
2015 BMW X6 M  
2014 BMW #55 BMW Team RLL Z4 GTE Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2012 Bowler EXR S  
1992 Bugatti EB110 Super Sport  
2011 Bugatti Veyron Super Sport  
1987 Buick Regal GNX  
2016 Cadillac CTS-V Sedan  
2011 Cadillac CTS-V Coupe  
2012 Cadillac Escalade ESV  
2013 Caterham Superlight R500  
1957 Chevrolet Bel Air  
1979 Chevrolet Camaro Z28  
2014 Chevrolet #3 Corvette Racing Corvette C7.R Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2014 Chevrolet Super Sport  
1967 Chevrolet Chevelle Super Sport 396  
1967 Chevrolet Corvette Stingray 427  
2002 Chevrolet Corvette Z06  
1990 Chevrolet Camaro IROC-Z  
2009 Chevrolet Corvette ZR1  
1970 Chevrolet Corvette ZR-1  
1970 Chevrolet El Camino Super Sport 454  
1964 Chevrolet Impala Super Sport 409  
1966 Chevrolet Nova Super Sport  
1988 Chevrolet Monte Carlo Super Sport  
2015 Chevrolet Corvette Z06  
2015 Chevrolet Camaro Z/28  
2016 Chevrolet CamarSuper Sport  
2012 Chrysler 300 SRT8  
1970 Datsun 510  
1969 Datsun 2000 Roadster  
1969 Dodge Charger Daytona HEMI  
1999 Dodge Viper GTS ACR  
1969 Dodge Charger R/T  
1970 Dodge Challenger R/T  
2008 Dodge Viper SRT10 ACR  
2015 Dodge Charger SRT Hellcat  
2015 Dodge Challenger SRT Hellcat  
2014 Dodge #93 SRT Motorsports Viper GTS-R Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2013 Donkervoort D8 GTO  
1953 Ferrari 500 Mondial  
2012 Ferrari F12berlinetta  
2010 Ferrari 599 GTO  
1984 Ferrari 288 GTO  
2003 Ferrari 360 Challenge Stradale  
2002 Ferrari 575M Maranello  
1948 Ferrari 166MM
Barchetta
 
1967 Ferrari 330 P4  
1994 Ferrari F355 Berlinetta  
1992 Ferrari 512 TR  
1969 Ferrari Dino 246 GT  
2002 Ferrari Enzo Ferrari  
1987 Ferrari F40  
1995 Ferrari F50  
2007 Ferrari 430 Scuderia  
2009 Ferrari 458 Italia リワード カー (Tier 6)
1957 Ferrari 250 Testa Rossa  
1957 Ferrari 250 California  
1968 Ferrari 365 GTB/4  
2011 Ferrari FF  
1962 Ferrari 250 GT Berlinetta Lusso  
2013 Ferrari LaFerrari  
2014 Ferrari California T  
2016 Ferrari FXX K  
2015 Ferrari 488 GTB  
2014 Ferrari #51 AF Corse 458 Italia GTE Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2015 Ferrari F12tdf VIP カー パック収録車種
1969 Fiat Dino 2.4 Coupe  
1980 Fiat 124 Sport Spider  
1975 Fiat X1/9  
1981 Ford Fiesta XR2  
2003 Ford Focus RS  
1940 Ford De Luxe Coupe  
1993 Ford SVT Cobra R  
2017 Ford F-150 Raptor Race Truck  
2014 Ford Fiesta ST  
1971 Ford Falcon XY GTHO Phase III  
1973 Ford Escort RS1600  
2013 Ford Focus ST  
1992 Ford Escort RS Cosworth  
1977 Ford Escort RS1800  
1966 Ford Lotus Cortina  
1985 Ford RS200 Evolution  
2005 Ford GT リワード カー (Tier 10)
1966 Ford GT40 Mk II  
2000 Ford SVT Cobra R  
1978 Ford Mustang II King Cobra  
2016 Ford #66 Racing GT Le Mans Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2015 Ford Falcon GT F 351 VIP カー パック収録車種
2009 Ford Focus RS  
1973 Ford XB Falcon GT  
2016 Ford #55 Supercheap Falcon FG X Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
1969 Ford Mustang Boss 302  
1987 Ford Sierra Cosworth RS500  
2012 Ford F-150 SVT Raptor  
2011 Ford Transit SuperSportVan  
1973 Ford Capri RS3100  
1956 Ford F-100  
2014 Ford Ranger T6 Rally Raid  
1975 Ford Bronco  
2016 Ford Shelby GT350R  
2017 Ford GT  
2017 Ford F-150 Raptor ゲーム リワード カー
2015 Ford Falcon XR8  
2014 Ford FPV Limited Edition Pursuit Ute  
1991 GMC Syclone  
1983 GMC Vandura G-1500  
2012 Hennessey Venom GT  
1988 Holden VL Commodore Group A SV  
1977 Holden Torana A9X  
2014 Holden HSV GTS  
2016 Holden Special Vehicles GTS Maloo  
2016 Holden #22 Sharkbite HRT VF Commodore Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
1951 Holden 50-2106 FX Ute  
1974 Holden Sandman HQ panel van  
2005 Honda NSX-R  
1992 Honda NSX-R リワード カー (Tier 2)
1997 Honda Civic Type R  
2009 Honda S2000 CR  
2006 HUMMER H1 Alpha  
2013 Hyundai Genesis Coupe 3.8 Track  
2015 Infiniti Q60 Concept  
2012 Infiniti IPL G Coupe  
2014 Infiniti Q50 Eau Rouge  
1993 Jaguar XJ220  
1954 Jaguar XK120 SE  
1961 Jaguar E-type S1  
1956 Jaguar D-Type  
1969 Jaguar Mk II 3.8  
1990 Jaguar XJ-S  
2015 Jaguar XFR-S  
2016 Jaguar F-TYPE Project 7  
2014 Jeep Grand Cherokee SRT  
2012 Jeep Wrangler Rubicon  
1945 Jeep Willys MB  
1991 Jeep Grand Wagoneer  
2015 Koenigsegg One:1 VIP リワード カー
2016 Koenigsegg Regera VIP カー パック収録車種
2013 KTM X-Bow R  
2012 Lamborghini Aventador LP700-4  
1997 Lamborghini Diablo SV  
1967 Lamborghini Miura P400  
2008 Lamborghini Reventón  
2011 Lamborghini Gallardo LP 570-4 Superleggera  
2014 Lamborghini Urus  
2013 Lamborghini Veneno  
2014 Lamborghini Huracán LP 610-4 リワード カー (Tier 9)
2015 Lamborghini #63 Squadra Corse Huracán LP620-2 Super Trofeo Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2016 Lamborghini Aventador LP750-4 SV VIP カー パック収録車種
2016 Lamborghini Centenario LP 770-4  
1986 Lancia Delta S4  
1992 Lancia Delta HF Integrale EVO  
1974 Lancia Stratos HF Stradale  
1982 Lancia 037 Stradale  
2014 Land Rover Range Rover Supercharged  
1997 Land Rover Defender 90  
2009 Lexus IS F  
2015 Lexus RC F  
2010 Lexus LFA  
2013 Lexus GS350 F Sport  
2014 Lexus IS 350 F Sport  
2014 Local Motors Rally Fighter ゲーム リワード カー
2005 Lotus Elise 111S  
2009 Lotus 2-Eleven  
2012 Lotus Exige S  
2011 Lotus Evora S  
1957 Maserati 300 S  
1953 Maserati A6GCS/53 Pininfarina Berlinetta  
1961 Maserati Tipo 61 Birdcage  
2014 Maserati Ghibli S Q4  
1994 Mazda MX-5 Miata  
2010 Mazda MazdaSpeed 3  
1972 Mazda Cosmo 110S Series II  
2013 Mazda MX-5  
2005 Mazda Mazdaspeed MX-5  
1997 McLaren F1 GT  
1993 McLaren F1  
2013 McLaren P1 リワード カー (Tier 8)
2009 Mercedes-Benz SL 65 AMG Black Series  
1967 Mercedes-Benz 280 SL  
2016 Mercedes-AMG C 63 S Coupé  
2011 Mercedes-Benz SLS AMG  
1990 Mercedes-Benz 190E 2.5-16 Evolution II  
2012 Mercedes-Benz C 63 AMG Coupé Black Series  
2013 Mercedes-Benz G 65 AMG  
2013 Mercedes-Benz A 45 AMG  
2013 Mercedes-Benz E 63 AMG  
2015 Mercedes-Benz GT S  
1949 Mercury Coupe  
2012 MINI John Cooper Works GP  
1965 MINI Cooper S  
2013 MINI X-Raid All4 Racing Countryman  
2006 Mitsubishi Lancer Evolution IX MR  
1999 Mitsubishi Lancer Evolution VI GSR  
2004 Mitsubishi Lancer Evolution VIII MR  
2008 Mitsubishi Lancer Evolution X GSR  
1992 Mitsubishi Galant VR-4  
1971 Meyers Manx  
2017 Nissan GT-R  
1971 Nissan Skyline 2000GT-R  
1998 Nissan R390  
2003 Nissan Fairlady Z リワード カー (Tier 3)
2000 Nissan Silvia Spec-R  
2002 Nissan Skyline GT-R V-Spec II  
2015 Nissan #1 NISMO MOTUL AUTECH GT-R Forza Horizon 3 Motorsport All-Stars カー パック 収録車種
2012 Nissan GT-R Black Edition  
1993 Nissan 240SX SE  
2010 Nissan 370Z  
1968 Opel GT  
1979 Opel Kadett C GT/E  
1969 Oldsmobile Hurst/Olds 442  
2012 Pagani Huayra  
2009 Pagani Zonda Cinque Roadster  
2011 Penhall Cholla  
1958 Plymouth Fury  
2015 Polaris RZR XP 1000 EPS ROCKSTAR EDITION  
2015 Polaris RZR XP 1000 EPS  
1977 Pontiac Firebird Trans Am  
1973 Pontiac Firebird Trans Am SD-455  
1969 Pontiac GTO Judge  
1971 Plymouth Cuda 426 Hemi  
2013 Ram Runner  
1993 Renault Clio Williams  
1973 Renault Alpine A110 1600S  
1980 Renault 5 Turbo  
2010 Renault Megane RS 250  
2014 Rolls-Royce Wraith  
2004 Saleen S7  
1965 Shelby Cobra 427 S/C  
1965 Shelby Cobra Daytona Coupe  
2013 Shelby Ford F-150 SVT Raptor Shelby  
2013 SRT Viper GTS リワード カー (Tier 7)
1996 Subaru SVX  
1990 Subaru Legacy RS  
2013 Subaru BRZ  
1980 Subaru BRAT GL  
2011 Subaru WRX STI  
2004 Subaru Impreza WRX STi  
2005 Subaru Impreza WRX STI  
2008 Subaru Impreza WRX STi  
1998 Subaru Impreza 22B STi  
2014 Tesla Model S P90D  
1979 Toyota FJ40  
1985 Toyota Sprinter Trueno GT Apex  
1994 Toyota Celica GT-Four ST205  
1992 Toyota Celica GT-Four RC ST185  
1974 Toyota Celica GT  
2013 Toyota GT86  
1998 Toyota Supra RZ  
2005 TVR Sagaris  
2015 Ultima Evolution Coupe 1020 VIP カー パック収録車種
1990 Vauxhall Lotus Carlton  
2012 Vauxhall Astra VXR  
2015 Volvo S60 Polestar  
1997 Volvo 850 R  
2016 W Motors Lykan Hypersport  

 

『Forza Horizon 3』製品ページはこちら >

 

.none{display:none;}
.carlist{border-bottom:1px solid #eee;}
.carlist td, .carlist th{border-width:1px; padding:2px 8px 2px 4px;}
.carlist td{vertical-align:top;}
.carlist th{background:#dcdcdc;border-bottom:1px solid #ccc;}
.carlist tbody tr:nth-child(even) {
background: #efefef;
-webkit-box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
-moz-box-shadow:0 1px 0 rgba(255,255,255,.8) inset;
box-shadow: 0 1px 0 rgba(255,255,255,.8) inset;
}
.col-sm-4{padding-right: 0;}
@media(max-width:539px){
.carlist td, .carlist th{font-size:12px;padding:2px;}
.carlist td.small{font-size:10px;}
}.main-img{margin-bottom:20px;}

マイクロソフト報奨金プログラムの拡張 – Microsoft Edge のリモートでのコード実行 (RCE) の脆弱性に関する報奨金プログラム

$
0
0

本記事は、Microsoft Security Response Center のブログ “Microsoft Bounty Programs Expansion – Microsoft Edge Remote Code Execution (RCE) Bounty” (2016 年 8 月 4 日米国時間公開) を翻訳した記事です。

 

本日、マイクロソフト報奨金プログラムを新たに拡張することをお知らせします。マイクロソフトは、Windows Insider Preview ビルド上の Microsoft Edge におけるリモートでコードが実行される脆弱性に関して、報奨金プログラムを開始します。

この報奨金プログラムによりマイクロソフトとセキュリティ研究コミュニティのパートナーシップは継続され、開発プロセスのプレリリースの段階でマイクロソフトのプラットフォームを安全に保つことに貢献します。Windows Insider program は Windows の未来を形作るために設計され、新しいセキュリティ機能や緩和策などを含む、最新の機能を提供します。Insider Preview に含まれる Windows の新しい機能に関する最新の情報については、Windows 10 Insider Program Blog を参照してください。

報奨金プログラムがリリース前のソフトウェアを対象としているため、既にマイクロソフトが解決するために取り組んでいる脆弱性の例が報告される可能性があります。その場合、これらの脆弱性を発見する労力に対する謝礼として、最初に問題を報告した外部の研究者に対して最大 1,500 米国ドルを支払います。
Microsoft Edge のリモートでのコード実行 (RCE) の脆弱性に関する報奨金プログラムの詳細については、https://aka.ms/bugbounty/ (英語情報) を参照してください。プログラムのハイライトは、以下のとおりです。

  • Windows Insider Preview 上の Microsoft Edge におけるリモートでコードが実行される脆弱性が対象
  • Chakra のオープン ソース セクションも含む
  • 報奨金プログラムの実施期間は 2016 年 8 月 4 日から 2017 年 5 月 15 日 (米国時間)
  • 報奨金の金額は、500 米ドルから 15,000 米ドルの範囲
  • もし研究者が、条件を満たす脆弱性で既にマイクロソフト内部で発見されたものを報告した場合、最初の発見者に対して最大 1,500 米国ドルを支払う
  • 脆弱性は、最新の Windows Insider Preview (Slow track) で再現可能でなければならない

この新しい報奨金プログラムは、現在実施中の Online Services 報奨金プログラム、および Mitigation bypass and Bounty for Defense 報奨金プログラムに追加されます。これらの拡張は、マイクロソフトにおける厳格なセキュリティ プログラムの一環となります。報奨金プログラムは、マイクロソフトの Security Development Lifecycle (SDL)、Operational Security Assurance (OSA) フレームワーク、マイクロソフトの製品とサービスに対する定期的な侵入テスト、およびサード パーティの監査によるセキュリティとコンプライアンス認証を補完するものです。

マイクロソフト報奨金プログラムの最新情報は、こちらの Web サイトおよび関連規約や FAQ を参照してください。

 

Start your fuzzers!
ジェイソン シャーク

————————–

■ご報告時の注意点
マイクロソフトの報奨金プログラムへご参加される場合は、脆弱性報告はすべて、こちらのガイドラインに沿って米国 mailto:secure@microsoft.comへ直接ご報告いただく必要があります。この際、英語でのご報告が困難な場合は日本語の併記・記載でも構いません。これは、報奨金受賞者選定において、公平性の観点で重要となります。 皆様のご参加をお待ちしています!

■関連情報

Installing Windows Nano Server on a MinnowBoard Max (at scale)

$
0
0

MinnowBoard The MinnowBoard MAX is an open hardware embedded board with a relatively powerful 64-bit Intel Atom E38XX series System on a Chip at its core. This board has an enormous range of capabilities for hardware and software developers, it makes it a great platform for Windows Nano Server in IoT.

Here I will deploy Windows Nano Server image on an embedded, non-removable SD Card. This solution offers the similar base functionality and capabilities of SATA, SAS, or NVMe – while being cost effective and offering adequate performance.

The PowerShell commands below can be integrated into a script and placed in a Windows PE to automate the deployment of Nano Server, either repeatedly on the same device or at scale in an unlimited number of devices. The same steps apply when deploying on traditional servers.

For more details about the MinnowBoard visit http://wiki.minnowboard.org

 

What you will need

Hardware list

MinnowBoard Max, 2Gb Memory version preferred
5V power supply
SD Card, UHS Speed Class I or II preferred
Peripherals: Micro HDMI cable and Monitor, USB Keyboard, Network Cable
Optional: USB Flash Drive, 8Gb, USB 3.0 or a Windows Deployment Services Server to boot a PowerShell enabled Windows PE

 

Software list

MinnowBoard Max latest x64 firmware
http://firmware.intel.com/projects/minnowboard-max, Visit http://wiki.minnowboard.org/UEFI for how to navigate the firmware

Windows Server 2016 ISO file (latest build available)
http://www.microsoft.com/en-us/evalcenter/evaluate-windows-server-technical-preview

Windows 10 ADK
http://go.microsoft.com/fwlink/p/?LinkId=526740

Intel Drivers for MinnowBoard Max, download each of the Driver packages and extract the CAB files to individual folders
http://catalog.update.microsoft.com/v7/site/ScopedViewInline.aspx?updateid=b454eb7e-0105-408d-a83f-75d450d5797a
http://catalog.update.microsoft.com/v7/site/ScopedViewInline.aspx?updateid=e5234c03-6635-4171-bd63-8ab461bd1e2a
http://catalog.update.microsoft.com/v7/site/ScopedViewInline.aspx?updateid=b54a9960-677e-49eb-b6dc-d36e0a32b14b
http://catalog.update.microsoft.com/v7/site/ScopedViewInline.aspx?updateid=e1d3835c-4fe4-4ce7-9d11-d6822bfafefa
http://catalog.update.microsoft.com/v7/site/ScopedViewInline.aspx?updateid=63b26746-3daf-45f5-8611-4bcb3b9fe17e (Opt. A/V)
you can also get the drivers from Intel, make sure the files are not in MSI format.

Custom Nano Server answer file, create an unattend.xml file on the nanoserver folder with the following XML content

<?xml version='1.0' encoding='utf-8'?>
<unattend xmlns="urn:schemas-microsoft-com:unattend" xmlns:wcm="http://schemas.microsoft.com/WMIConfig/2002/State" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <settings pass="offlineServicing">
    <component name="Microsoft-Windows-UnattendedJoin" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
        <OfflineIdentification>
           <Provisioning>
             <AccountData></AccountData>
           </Provisioning>
         </OfflineIdentification>
    </component>
  </settings>
  <settings pass="oobeSystem">
    <component name="Microsoft-Windows-Shell-Setup" processorArchitecture="amd64" publicKeyToken="31bf3856ad364e35" language="neutral" versionScope="nonSxS">
        <UserAccounts>
          <AdministratorPassword>
              <Value>Pass@word1</Value>
              <PlainText>True</PlainText>
          </AdministratorPassword>
        </UserAccounts>
        <TimeZone>Pacific Standard Time</TimeZone>
    </component>
  </settings>
</unattend>

 

Environment

To complete the steps described here, you should be familiar with SMB File Server, Active Directory, DHCP, Windows Deployment Services, Windows Pre-Installation Environment and Powershell.
In my example here I will be joining the Nano Servers to Active Directory domain, you will need one, a DNS and DHCP.
The actual installation will be done from a Windows PE, you can either use a USB flash drive or use a Windows Deployment Services server to boot WinPE over PXE. This WinPE will need to have PowerShell enabled, follow the steps here or any similar guide you prefer. Configure the WDS and load this WinPE into the boot images.
Create a shared folder on a Server where you will have the files. In my example, I will use the WDS server with a SMB share (DeployShare) with Nanoserver, Blobs and Drivers folders. Copy the content of the NanoServer folder from the Windows Server 2016 ISO, place the extracted drivers in the drivers folder, the Blobs folders will be used to place the generated AD blobs.

 

Update the MinnowBoard Max Firmware and configure

Connect the MinnowBoard to the monitor, the USB Keyboard to the upper white USB port, the Ethernet cable and as last the power connector.
To boot and run Nano Server we need a 64-bit UEFI firmware. It is highly probable that your MinnowBoard has a 32-bit UEFI firmware. Follow the instructions on the Wiki to identify which one is installed in you board. You will need to know it to run the correct version of the firmware update utility.
To update the firmware, follow the instructions on the Intel MinnowBoard MAX Binary Usage Release Notes.
Power off the board and insert the SD Card. The card will need to be set as non-removable for Windows to be able to boot from it. For that, power on the board and press F2 during POST and in the menu select (type exit if you got to the UEFI shell)

Device manager >> System Setup >> South Cluster Configuration >> LPSS & SCC Configuration !! ACPI Reporting MMC/SD Media As <Non-Removable> !!

Setup any other parameter you may need, like Intel VT. On boot manager set the first boot options to EFI Misc Device and the second to PXE over IPv4. Save the configuration and restart, the MinnowBoard should be booting to WinPE from the WDS Server.

 

Install Nano Server

The first step once WinPE start is to define some parameters that I will use throughout the deployment process.
I will need an account with permissions to create new AD computer accounts and also access the file share where I have my files. I will also define a server that I will use to generate the AD blob for my Nano server machine account, what packages to install on my Nano Server and the network location where I can find those files.

$user = 'administrator'
$domain = 'ws2012r2domain'
$password = ConvertTo-SecureString -String 'Pass@word1' -AsPlainText -Force
$cred = New-Object -TypeName System.Management.Automation.PSCredential -ArgumentList $domain''$user, $password
$BlobSvr = 'ws2016wds'
$DShare = '\'+$BlobSvr+'DeployShare'
$Packages = 'NanoServer-Compute','NanoServer-DCB','NanoServer-Defender','NanoServer-DSC','NanoServer-FailoverCluster','NanoServer-Host','NanoServer-OEM-Drivers','NanoServer-SecureStartup','NanoServer-Storage'
### other Packages ###'NanoServer-Containers','NanoServer-DNS','NanoServer-Guest','NanoServer-IIS','NanoServer-SCVMM','NanoServer-ShieldedVM','NanoServer-SoftwareInventoryLogging' 

 
Specific to my hardware configuration, my network takes a few seconds to come online. I added this loop to wait for the network to be ready by testing the connection against my WDS server.

while ((Test-Connection -ComputerName $BlobSvr -Count 1 -Quiet) -ne 'true')
    {
    Write-Host "Waiting for network ..."
    sleep -Seconds 2
    }

 
Next I map a network drive to the WDS server, It will not be using the mapped drive, but it will help maintain an authenticated SMB session with the server.

New-PSDrive -Name "Y" -Root $DShare -PSProvider "FileSystem" -Credential $cred 

 
Now is were the fun part begins. We will need a name for the Nano server to provision the Active Directory account and create a blob used to join the server to the Domain during first boot. In my example I will be using the NIC MAC address (for being unique) and will add a prefix to identify it as the Host OS.
The next set of commands read the MAC address and manipulate the string to a valid ComputerName and then connect to the domain joined WDS server to generate the AD blob. The AD blob is saved to a folder on the share.

[string]$mac = (Get-WmiObject -Class win32_networkadapter).macaddress
$Computername = "HST" + $mac.TrimStart().Replace(":","").Substring(0,12)

$DJoin = "C:windowssystem32djoin.exe /provision /reuse /domain $domain /machine $Computername /savefile $DShareblobs$Computername.blob"
$GetBlob = Invoke-WmiMethod -Class win32_process -Name create -ArgumentList $DJoin -ComputerName $BlobSvr -Credential $cred -Impersonation Delegate -Authority kerberos:$domain''$BlobSvr
It is good to perform these first, if it fails there is no point in continuing.

 
Next step is to identify the SD Card disk, clean it and create the system partitions

$PDisk = Get-PhysicalDisk |? BusType -EQ SD |Get-Disk
$PDisk | Clear-Disk -RemoveData -RemoveOEM -Confirm:$false
$PDisk | Initialize-Disk -PartitionStyle GPT

New-Partition -DiskNumber $PDisk.Number -Size 128Mb -DriveLetter S -GptType "{ebd0a0a2-b9e5-4433-87c0-68b6b72699c7}" | Format-Volume -FileSystem FAT32 -NewFileSystemLabel System 
New-Partition -DiskNumber $PDisk.Number -UseMaximumSize -DriveLetter W -GptType "{ebd0a0a2-b9e5-4433-87c0-68b6b72699c7}" | Format-Volume -FileSystem NTFS -NewFileSystemLabel Windows

 
With the partitions created it is time to apply the base Nano image and the Nano packages. WIM index 1 is Standard Edition and index 2 datacenter, the packages are identified as an array of strings defined earlier, modify these as needed. Other Windows features can also be enabled offline at this point.

Expand-WindowsImage -ImagePath "$DShareNanoServerNanoServer.wim" -Index 2 -ApplyPath W:

ForEach($Package in $Packages)
	{
	$Cabs = Get-ChildItem "$DShareNanoServerPackages" -Recurse -Include *$Package*.cab | Sort-Object -Descending
	ForEach ($Cab in $Cabs)
		{
		Add-WindowsPackage -Path w: -PackagePath $Cab.FullName
		}
	}

Enable-WindowsOptionalFeature -FeatureName File-Services -Path W: 

 
Now that the image is applied to the SD card, we need to ensure the Nano Server has all the drivers to boot and operate the Hardware. In the next steps we will use the WinPE drivers for SD Card and USB storage devices and apply them to the image, similarly will apply all the MinnowBoard specific drivers from the drivers folder.

Add-WindowsDriver -Path w: -driver (Get-Item -Path X:WindowsSystem32DriverStoreFileRepositorysdstor.inf_amd64_*) -Recurse -Verbose
Add-WindowsDriver -Path w: -driver (Get-Item -Path X:WindowsSystem32DriverStoreFileRepositorysdbus.inf_amd64_*) -Recurse -Verbose
Add-WindowsDriver -Path w: -driver (Get-Item -Path X:WindowsSystem32DriverStoreFileRepositoryusbstor.inf_amd64_*) -Recurse -Verbose
Add-WindowsDriver -Path w: -driver (Get-Item -Path X:WindowsSystem32DriverStoreFileRepositoryusbhub3.inf_amd64_*) -Recurse -Verbose
Add-WindowsDriver -Path w: -driver (Get-Item -Path X:WindowsSystem32DriverStoreFileRepositoryusbxhci.inf_amd64_*) -Recurse -Verbose

Add-WindowsDriver -Path w: -Driver "$DShareDriversMinnowboard" -Recurse -Verbose 

 
As next step, create the Boot Configuration Database and the boot loader files to the S: partition and set it as a UEFI system partition

Invoke-Command -ScriptBlock {Bcdboot w:windows /s s: /f UEFI} 

Set-Partition -DiskNumber $PDisk.DiskNumber -PartitionNumber 1 -GptType "{c12a7328-f81f-11d2-ba4b-00a0c93ec93b}" 

 
The last step is to read the AD blob created previously, place it it in the unattend.xml file and apply the unattended to the image. During the first boot this blob will be read and the Nano server will join the domain without requiring user input.

$unattendxml = [xml](Get-Content "$DSharenanoserverunattend.xml")
$blob = (Get-Content -Encoding ASCII -Path "$DShareblobs$Computername.blob").ToString()
$blob = $blob.Substring(0,$blob.Length -1)
$unattendxml.unattend.settings[0].component.OfflineIdentification.Provisioning.AccountData = $blob
$unattendxml.Save('X:unattend.xml')

Apply-WindowsUnattend -Path W: -UnattendPath X:unattend.xml
New-Item -Path W:WindowsPanther -ItemType Directory -Force
Copy-Item -Path X:unattend.xml -Destination W:WindowsPanther -Force 

 
And this will be all, once you reboot ensure the boot order has the UEFI Misc Device as first. Windows will create a new entry for the Windows Boot Manager to keep the BCD and the firmware info synchronized.

You can use the local recovery console and/or PowerShell remote to configure and manage you Windows Nano Servers.

 

 

 

Updates to Office 365 Proxy PAC Generator

$
0
0

I wrote the original Proxy PAC tool for a customer almost a year ago, and since have added a lot of new functionality.  Rather than updating my previous blog posts about it, I thought I would start a fresh thread.  If you want some background on how Proxy PAC files work and how to distribute them to your users via GPO or WPAD, I would suggest taking a look at my posts dealing with those topics:

Now, on to the new stuff.

43523-Nathan-Fillion-shiny-gif-rNRf

Configuring

I try hard to build in good help, which you can access by running Get-Help .Office365ProxyPac.ps1.

pac_v2-01

I added a few new parameters that I’m really excited about and want to share.  So, without further ado:

Blocklist

This is a feature that I put in after some questions from customers about including public URLs such as Facebook or YouTube in the O365IPAddresses.xml file.  Some organizations don’t really want to allow access to those URLs carte blanch, so I added a feature to exclude those from being included in the “DIRECT” directive by omitting them from the list overall.  Using the feature:

.Office365ProxyPac.ps1 -Blocklist youtube,facebook

pac_v2-02

AlwaysProxyBlocklist

However, just to cover all the bases, maybe the customer wants to ensure that those URLs on the Blocklist are actually proxied.  In that case, they can use the -AlwaysProxyBlocklist parameter, which causes the script to build a new section and assign them the PROXY directive with no fall-back configuration.  To use this feature:

.Office365ProxyPac.ps1 -Blocklist youtube,facebook

pac_v2-03

When you open the Office365PAC.pac file, you’ll see this new directive:

pac_v2-04

Products

This was by far the most requested feature that I added.  I received a lot of feedback about being able to only configure proxy bypass (DIRECT) for individual services, so I have finally implemented a feature to be able to do it.  To use the feature:

.Office365ProxyPac.ps1 -Products EXO,Identity

pac_v2-05

Testing

Once you’ve created your PAC file, I would suggest testing it to make sure you get the desired behavior.  I use the FindProxyForUrl toolset (http://findproxyforurl.com/official-toolset/).  After you download and extract it, you can use pactester.exe to verify that it works as planned.  For my test PAC, I used the parameters -Products EXO,OneNote,Identity -AlwaysProxyBlockList -Blocklist youtube,facebook.

To run the tool, the syntax is:

pactester.exe -p <pac file> -u <url to test>

pac_v2-07

In my case, the desired result is to send URLs with the pattern facebook to the proxy and for everything else to go direct.

The updated version of the Office 365 Proxy Pac tool is available here: https://gallery.technet.microsoft.com/Office-365-Proxy-Pac-60fb28f7.

Happy Proxying!

Viewing all 36188 articles
Browse latest View live


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