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

The case of proxies and ConfigMgr - An inside view

$
0
0

Hi Folks,

I have faced many issues related directly or indirectly to proxies. The enterprise environment tend to have the traffic directed towards them for monitoring and security. But the point comes in with ConfigMgr, as to how to we deal with it while fetching the local URLs and not going to internet.

The discussion will go like -

1.        The different ways the Internet Explorer get the proxy.

2.       The logic that the Windows Update uses while working with them.


This post can be thought as a general one to get insights on proxies while working on any issue.

I will talk about Internet explorer first and then we will move on the second part. The different ways of Internet explorer getting the proxy –

Well we are aware of the most of the settings here that we see in the Internet Explorer.

The settings are clear –

1.        Automatic Configuration.

2.       Manual specification of the proxy with bypass settings (This can be configured via GPO. Named ‘Manual’ as we specify the proxy server name and if needed Bypass list)

 

Automatic Configuration

The first check box ‘Automatically detect settings’ means the machine to automatically discover the proxy. Well the million dollar question comes but how does it do?

From Technet,

Automatic detection of browser settings, which is based on Web Proxy AutoDiscovery (WPAD), is supported by both Dynamic Host Configuration Protocol (DHCP) and Domain Name System (DNS). With the appropriate settings, DHCP and DNS servers can automatically detect and configure a browser's settings. This feature builds on existing automatic configuration technologies, in which a browser can be configured from a central location with an automatic configuration URL (.ins file) or a Javascript proxy configuration (.js, .jvs, or .pac) file.

Well a lot has been said in these two lines. Let us try to take in parts.

1.        We have something called a .PAC (Proxy AutoConfig) or .WPAD file that resides on the Web Server (IIS) which contains the rules for any client to get the proxy.

2.       Clients needs to know the location of this .PAC or .WPAD file so that they know their proxy. For this they can query DNS or DHCP.

 

The next two questions that comes is ‘What is a PAC or WPAD file and how can I make my design this?’ And ‘Which settings in the DNS/DHCP make it functional for autodiscovery?’

Let’s get to the first question What is a PAC or WPAD file and how can I make my design this?

Well, WPAD is the Microsoft implementation of the PAC. Hence will use WPAD henceforth.

This is a simple file containing a Javascript function. Below a pseudo code example.

=======================

functionFindProxyForURL(url, host) {

// If the hostname matches, send direct.

If host domains equals “*.example.com” then

Return “DIRECT”;

// DEFAULT RULE: All other traffic, use below proxies, in fail-over order.

Return “PROXY 10.10.10.10:8080”;

}

=======================

Explanation:

 

The function takes two parameter – The URL a machine is trying to fetch and the hostname of the machine itself.

So generally the rules are created on these two basis. E.g.

 

a.       Machine fetching a URL http://example.com/* should be routed through <proxy1>

Example –

if(shExpMatch(url, "http://example.com/*")

              return"PROXY <proxy1>"; //Where <proxy1> is the IP of the proxy

 

b.      Machine belonging to a domain (*.example.com) should be routed directly without any proxy.

Example –

if(dnsDomainIs(host, "*.intranet.domain.com")

      return "DIRECT";

 

c.       If the machine does not match any of the earlier defined rules then go with the default rule defined at the end.

Example -

 

// DEFAULT RULE: All other traffic, use below proxies, in fail-over order.

Return “PROXY 10.10.10.10:8080”;

 

There are various other functions which can be used and you can study them from here –

http://findproxyforurl.com/pac-functions/

 

A sample WPAD file that I have created for my test –

 

If the Client IP is 16.1.1.20 then go through proxy 157.54.27.22 else go DIRECT

 ========

function FindProxyForURL(url, host) { 

    if (isInNet(myIpAddress(), "16.1.1.20", "255.0.0.0"))

        return "PROXY 157.54.27.22";

 

// DEFAULT RULE: All other traffic, go DIRECT.

   return "DIRECT"; 

}

========

Name this file WPAD.dat and put in in the C:\inetpub\wwwroot folder for the IIS server you want to serve as WPAD server.

The next thing is we have to make sure the clients to know the use and download this set the correct MIME Types for the website. Add the below -

Extension:.datMIME Type:application/x-ns-proxy-autoconfig 

Just test from a client machine if you can download the file from the URL: http://<servername>/wpad.dat

 

With this we are all set now. If we look closely we have two options under Proxy settings in Automatic Configuration for IE –

1.        Automatically detect settings.

2.       Use Automatic Configuration script.

 

Well the difference in these two options is that for the first option to work we will have to make arrangements in DNS/DHCP (which I will mention later) so that the client can automatically find the wpad file URL and download it.

For the second option we can specify the URL of the wpad/pac file directly. This can be deployed to clients via GPO too.

Let us come to the first option of automatic discovery of the WPAD file. The following changes need to be made –

1. DHCP

The DHCP server should be configured to serve a 252 entry in the DHCP information sent to a user. When configured this entry includes a direct link to the wpad.dat file.

Code: 252 DataType: String  StringValue:http://Computer_Name:Port/wpad.dat

The Client basically sends the DHCPINFORM and the DHCP Server in returns the WPAD URL in response.

2.       DNS

A host A record named WPAD with the IP Address of the WPAD server. If, for example, the network name of the user's computer is pc.department.branch.example.com, the browser will try the following URLs in turn until it finds a proxy configuration file within the domain of the client:

http://wpad.department.branch.example.com/wpad.dat

http://wpad.branch.example.com/wpad.dat

http://wpad.example.com/wpad.dat

http://wpad.com/wpad.dat

 If both DHCP and DNS are configured DHCP is prioritized. And only if it fails it will use DNS.

Now that ends the discussions on the proxy and settings for Internet Explorer.

What about ConfigMgr components or Windows update?

We generally don’t want the Clients to go through a proxy for Local URLs. The options are simple either to make a rule in the WPAD file (If that is the method used). Many of the customer do not want to touch it. So let us understand the Logic –

There are two types of proxy settings on modern Windows computers (Vista and above). There are the user-level settings, which are set through the Internet Options control panel, and the machine-level settings, which are set using the netsh winhttp set proxy command. When Windows Update is performing a scheduled Automatic Updates operation, it uses the machine-level settings. (There’s a case where it uses the user-level settings, but it’s quite rare, so let’s set that case aside.)

Now, there’s a critical difference – arguably a design limitation – between the user-level settings and the machine-level settings. The user-level settings allow you to explicitly choose among three options: “Don’t use a proxy at all”; “Look for a WPAD on the network, and use its settings if you find one”; and “Use this proxy server and these other proxy settings.” The machine-level settings only allow you to choose between “Use this proxy server and these other proxy settings” and “Don’t use a proxy at all.” There is no way to explicitly set the machine-level proxy settings to “Look for WPAD on the network and use it if it’s there.”

Because of that, when Windows Update sees that the machine-level proxy settings are “Don’t use a proxy at all”, WU acts as if the settings were “Look for WPAD on the network and use it if it’s there; otherwise don’t use a proxy.” This is the correct behavior virtually all of the time, because if there’s a WPAD on the network, it’s generally correct to use it. Unfortunately, If we have the WPAD, the component will use it.

Here is the workaround for this issue. Run this command from an elevated command prompt:

netsh winhttp set proxy proxy-server="nosuchserver" bypass-list="*.domain;<local>"

In other words, we are setting the machine-level proxy settings to “Use the proxy server nosuchserver; but bypass the proxy if you’re accessing any non-local site or any local site – in other words, always bypass the proxy server.”

Now WU sees that the machine-level proxy settings are “Use this proxy server and these other proxy settings”; so it skips looking for a WPAD, and obeys the proxy settings. But since the proxy settings always evaluate to “Bypass the proxy server”, the request always winds up being sent directly to the target host.

Note: For windows XP/ Server 2003 we can use ‘Proxycfg’ command. Wherein we can set the proxy and the bypass list in IE and then later import it using the ‘Proxycfg -i’ command.

 

At last we can also make sure that the particular application to avoid the proxy. For our SMSEXEC –

This can be done by creating a config file smsexec.exe.config

The location where the file should be created is :

c:\program files\microsoft configuration manager\bin\X64\smsexec.exe.config

The contents of the config file should look like:

================

<?xml version="1.0" encoding="utf-8" ?>
<configuration>
<system.net>
      <defaultProxy>
         <proxy usesystemdefault="False" />
      </defaultProxy>
   </system.net>
</configuration>

================

Hope it helps!

Umair Khan

Support Escalation EngineerMicrosoft System Center Configuration Manager  

Disclaimer:This posting is provided "AS IS" with no warranties and confers no rights.


Celebrate the launch of ‘Titanfall’ live on Twitch tonight!

$
0
0

clip_image002

Celebrate the launch of “Titanfall” live from Austin, Texas on Monday beginning at 8 p.m. Pacific, with a special event on Twitch brought to you by Respawn Entertainment, EA and Xbox.

Xbox Wire writes that there will be prizes, special guests and developer walkthroughs of brand new “Titanfall” maps, answers to fan questions, and the announcement of a new collaboration in the “Titanfall” universe as part of the live-streaming event.

Check out Xbox Wire for more details and join the party on Twitch tonight.

You might also be interested in:

· Respawn answers your “Titanfall” questions
· Xbox Wire shares tactical successes, failures from “Titanfall” beta
· Video: Behind the scenes of the creation of “Titanfall”

Aimee Riordan
Microsoft News Center Staff

Los memes que pueden cambiar al mundo

$
0
0
Alguna vez en televisión, hemos visto programas que a modo de burla, tratan temas serios como la política. Aprendan cómo el internet junto con los memes han invadido a la política y nuestras vidas, además de otros aspectos que nos rodean y cómo pueden cambiar la forma de pensar de la gente. http://www.microsoft.com/es-xl/news/3-razones-por-las-que-los-memes-de-Internet-han-cambiado-al-mundo.aspx...(read more)

Let’s HereHere it for this New York City neighborhood data project from Microsoft Research

$
0
0

clip_image001

HereHere – a project that focuses on driving hyperlocal, real-world engagement to encourage civic discourse – makes its debut Monday in the Big Apple.

The project comes from Microsoft Research’s Future Social Experiences Labs (FUSE Labs). Kati London is a senior researcher and the lead for HereHere, which began in July 2013.

“HereHere NYC introduces daily neighborhood engagement with a light touch,” London says. “It takes neighborhood-specific public data, and it enables the neighborhoods to communicate how they’re doing — expressed through text and cartoonlike icons. People can receive the information via a daily email digest, neighborhood-specific Twitter feeds, or status updates on an online map. We want to understand how it changes or impacts the way people relate to their community when they can interact with data in this way.”

The project uses New York City’s 311 non-emergency data stream, which contains New York residents’ emails, phone calls and text messages sent to communicate issues to city authorities. Each day, HereHere pulls 311 data for each neighborhood and identifies the most compelling, important 311 request types, and the system generates cartoons and text that represent a neighborhood’s reactions.

Head over to Microsoft Research to find out much more information about HereHere.

You might also be interested in:

Athima Chansanchai
Microsoft News Center Staff

WPC 2014: Save $100 on Your Registration on March 12 and March 13

$
0
0

WPC_MarchregsaleSecure your spot at the 2014 Microsoft Worldwide Partner Conference, the Microsoft partner event of the year, for a discounted rate during our spring sale on March 12 and March 13.*

From Wednesday, March 12 at 12:01AM Pacific Time to Thursday, March 13 at 11:59PM Pacific Time, register for an all-access pass for WPC 2014 for the price of $1,895, a $100 discount off of the current conference registration price.

Be sure to act quickly—this offer is valid for just 48 hours.

* Offer valid for new registrations only. No refunds available for existing registrants.

WPC news and announcements

  • Come to WPC 2014 to learn, network, and grow. This year, we're focusing on partner profitability and how your Microsoft partnership can drive your business forward. We’ve simplified our approach to content, with just five tracks that align to industry trends: Big Data, Cloud, Mobility and Devices, Enterprise Social, and Business Leadership.
  • The US Partner Team is excited to announce that this year’s US Celebration—our opportunity to thank you for being a Microsoft partner in a relaxed setting—will be at the Smithsonian National Air and Space Museum on Tuesday, July 15. We are also planning activities for US partners that include the US keynote, lounge, roundtables and executive meetings, and US-specific sessions.
  • You can self-nominate for the 2014 Partner of the Year Awards through April 11. These awards celebrate each of the core partner competencies: cloud technology, applications on Microsoft platforms like Windows 8 and Windows Azure, entrepreneurial spirit, citizenship, and sales excellence. Partners that win an award, or place as a finalist, often benefit from increased market, peer, and Microsoft recognition; positive press coverage; and new or stronger business opportunities.

Join in, and join us at WPC

Plan your journey to WPC 2014 with information and resources on the conference website. We can’t wait to see you in Washington, DC, this July!

Stay informed about WPC with news and announcements from the US Partner Team: follow @wpcus on Twitter (#wpc14), join our WPC Yammer group, and read our blog.

Twitter_coolgrey7     Yammer_coolgrey7     RSS_coolgrey7

Let it go with updated ‘Frozen Free Fall’ from Disney in Windows Store

$
0
0

clip_image002

“Frozen Free Fall” from Disney (free in the Windows Store) brings engaging puzzle play to the gorgeous world of Anna, Elsa and their friends from the Disney hit movie, “Frozen.” The game is newly updated, with 30 more delightfully icy puzzles, for a total of 120, so that there’s plenty of sliding and matching of colorful frozen crystals to be done.

You’ll unlock more characters as you go, and enjoy special power-ups with each one – including Sven and Olaf. Live Tiles display your completed levels, your score and the character who helped you achieve the points.

Download the updated “Frozen Free Fall” today from the Windows Store.

You might also be interested in:

· Celebrate the launch of “Titanfall” live on Twitch tonight!
· “Rayman Fiesta Run” gives endless runner new adventures on Windows Phone devices
· “Rabbids Big Bang” and its adventurous space bunnies now on Windows PCs and tablets

Suzanne Choney
Microsoft News Center Staff

Contoso Labs-Fabric Non-Choices (Compute)

$
0
0

As we mentioned when we laid out our hardware resources, this was the one choice that was already made for us. It is worth writing a post to detail what our compute hardware looks like, and understand what it can and can't do for us.

Our Generic Compute Node

The systems we have are a bit of a special beast. They were designed by HP for use by some of our massive online properties like Bing and Xbox Live. They're roughly equivalent to a DL360G6, which is a 1U "pizza box" style rack mount server. The unique bits are some features which were added/deleted because they made the most sense for the design of the services they were running on at the time they were designed. This architecture is 2009-10 era stuff, so in technology terms it's almost ancient, but it still has some good life left for our purposes.

Relevant Specs

  • Two Intel Xeon E5440 quad-core processors, HT-enabled (16 LPs total)
  • 72GB RAM
  • Four 1GbE NIC ports (2 onboard, 2 via add-in)

Compute Pool

Doing the math, this gives us a total resource pool for our cloud of 2,304 physical CPU cores, just over 20TB(!) of RAM, and a boatload of potential network throughput. (Though still not nearly as much as we'd like.) We're anticipating the main resource constraint will be RAM before storage or CPU cycles, and our average user to consume an average of 32GB of RAM each. Given host reserves, this gives us the ability to host almost 600 average users continuously. That's not bad, for such a RAM-intensive group.

Next up, we'll cover what we actually ended up purchasing to fill these roles in our architecture.

Sunday Suprise - International Wiki Women's Day

$
0
0

Hello Ladies and Gentilmen;

This is my first time on English Blog page. And I am happy to write an article about this valuable day. Women are important and valuable to us. Some of them contribute in TechNet Wiki. For this reason I celebrate women's day

Wiki Women list in chronological order.

Ana de Almeida
Andrielle Azevedo
Carla Sabotta
Heidi Steen
Jeannine Takaki
Kim Ditto
Margriet Bruggeman
Mandi Ohlinger
Maggie S
Michele
Monica Rush
Naomi N
Susan Bradley
Tiffena Kou
Yelenah

All women are special

Let's celebrate

 

Thank you for all


Turkish Wiki Ninja Davut


Interview with a Wiki Ninja: João Eduardo Sousa

$
0
0

Welcome to our Monday interview with a Wiki Ninja!

One thing I'm trying to do this year is to promote and encourage the Portuguese community to be more present and contribute with more articles on TechNet Wiki, whether they be in English or Portuguese, and today interview is with one Portuguese Community member... João Eduardo Sousa.

Besides being my friend João is also my coworker that in the last few month have write several articles about MVC

 

Who are you, where are you, and what do you do? What are your specialty technologies?

My name is João Sousa and I am 34 years old. I was born and currently live in Porto. I'm working as a Software Engineer on Devscope (www.devscope.net), directly with Microsoft Products.

My focus is on C# .NET Programming (Desktop and Web Applications).

What do you do with TechNet Wiki? Andwhat is it about TechNet Wiki that interests you?

TechNet Wiki is a great tool that allows a wide variety of users, from novice to experts, to share their knowledge on a range of interesting issues.

TechNet Wiki community gives us access to a wide range of good articles and state of the art knowledge.

I find this solution to be very useful on my job whenever I need to find some information regarding a specific topic.


What is it about TechNet Wiki that interests you?

It usually takes a lot of time to find quality information about a specific topic. With TechNet Wiki you can easily access content and find answers quickly. It is also a good place to share knowledge. One point that I would like to highlight is the possibility to add contributions to the other posts, in order to improve their quality, always under the supervision of ThechNet Wiki experts.

This way it is ensured the quality of the information shared.

 
What are your favorite articles you’ve contributed?

One of my last article. Is about publishing ASP.NET MVC Web Application to Windows Azure. The article can be found at this address: http://social.technet.microsoft.com/wiki/contents/articles/23217.how-to-publish-asp-net-mvc-web-application-to-windows-azure.aspx

Other articles of my own:


Who has impressed you in the Wiki community, and why?

I would have to say you, without any doubt. First of all, you were the one who introduced me to the TechNet Wiki and urged me to start contributing. Also, for you great articles and amazing participation on TechNet Wiki community.
I would also like to mention Ed Price by the amazing way as he manages the platform.

What are your favorite Wiki articles (top 5)?

ASP.NET MVC Learning Roadmap - http://social.technet.microsoft.com/wiki/contents/articles/5287.asp-net-mvc-learning-roadmap.aspx

Windows Azure Pack (#WAPack) and Related Blogs, Videos and TechNet Articles - http://social.technet.microsoft.com/wiki/contents/articles/20689.windows-azure-pack-wapack-and-related-blogs-videos-and-technet-articles.aspx

ASP.NET Portal - https://social.technet.microsoft.com/wiki/contents/articles/4973.asp-net-portal.aspx

Windows Phone and Windows Store Apps Resources on the TechNet Wiki - http://social.technet.microsoft.com/wiki/contents/articles/22758.windows-phone-and-windows-store-apps-resources-on-the-technet-wiki.aspx

Develop and Deploy with Windows Azure SQL Database - http://social.technet.microsoft.com/wiki/contents/articles/994.develop-and-deploy-with-windows-azure-sql-database.aspx

Do you have any tips for new Wiki contributors?

Don't be afraid to contribute. There's always someone available to help you.



Thanks João for the interview and your contributions for the Community.

- BizTalk Wiki Ninja Sandro Pereira (Blog, Wiki, Twitter, Profile)

Socrata Releases Open Data Connector for Microsoft Office 365

$
0
0

Posted by Openness Team

 If you’re a Microsoft Excel fan who is hoping to use familiar technologies to meet the open data mandate, you should check out the just released Socrata Open Data Connector for Microsoft Office 365.

By adding support for the Open Data Protocol (OData), an open standard for accessing data over the web, users will be able to seamlessly access datasets from within their Excel spreadsheets, and keep them in sync as data changes.

...(read more)

PowerShell Deployment Toolkit Gen 2

$
0
0

Hallo zusammen,

nachdem ich einige Tage mit dem PowerShell Deployment Toolkit zugebracht habe bin ich total begeistert von den Möglichkeiten, die dieses Framework bietet.

Erste Versuche haben mich jedoch in diverse Fehler geführt und was ich bisher in den Blogs vermisse will ich hier kurz niederschreiben.

Ich teste das PDT 2.6 auf Windows Server 2012 R2 voll gepatcht.

1. Generation 2 VMs

Bei der Erstellung von Generation 2 VMs gibt es ein Problem mit der Reihenfolge, wie Resourcen an die VMs hinzugefügt werden. Zuerst kommt der Netzwerkadapter, danach CDROM und die Virtual Disks. Das sorgt im UEFI Boot Mode für die Bootreihenfolge NIC - HDD 1 - HDD".

Da das für einen Timeout mit Stop in Hyper-V sorgt, muss bei allen VMs die Boot Reihenfolge geändert werden.

Ich habe dazu im Script VMCreator.ps1 folgende Zeilen bei Zeile 1162 ergänzt:

# Set Boot Order

if($VMGen-eq"2"){

$primaryHD= Get-VMHardDiskDrive $VMName -ControllerLocation 0 -ControllerNumber 0

Set-VMFirmware -VMName $VMName -FirstBootDevice $primaryHD

Write-Host" Changing Boot Order: "$primaryHD.name.ToString()

}

Das sorgt dafür, dass die erste HD (dev 0 an Controller 0) als primäres Boot Device eingestellt wird.

2. Ich bekam immer diverse Fehler beim ausführen der Scripts. Fehlermeldungen wie "OM Server Setup contains invalid characters" haben mich dazu getrieben, die Servernamen zu ändern auf die originalen Einstellungen. Trotzdem verbleiben Fehler in den Scripts.

Nach einigen Versuchen habe ich festgestellt, dass die Regional Settings dafür verantwortlich sind. Um PDT 2.6 fehlerfrei zu bekommen ist es das Einfachste, das Basis Image für Windows Server 2012 R2 auf den Standard Einstellungen in en-us zu belassen. Tastatur, Datum und Anzeigesprache. Man kann danach die Server recht einfach mit folgendem Script in der VM auf die deutschen Einstellungen korrigieren:

set-culture de-de

set-winsystemlocale de-de

Set-WinHomeLocation 0x5E

Set-WinUserLanguageList de-de -force

Ich hoffe, die Informationen sind hilfreich.

Huge growth in Microsoft’s market share for web servers!

$
0
0

Millions of people out there are using IIS to host their websites, but we all know it’s not the only product on the market. For many years, Apache was leading with a significant margin, but things are finally starting to change.

According to NetCraft, a research company from the UK which specializes in analyzing the web and hosting market, IIS has had a huge spike in market share recently. According to the report they released a few days ago, IIS had almost 50 million new sites during February, increasing it’s market share by 19%.

This is great news because it’s not only a large increase by itself, but also means that 32.8% of the websites in the world are running on Microsoft servers. This bring IIS close to a nose-to-nose with Apache (at 38% market share).

According to our own survey, IIS 7.5 is the most popular version, running on about 60% of the IIS Servers on the public internet. Neither this or NetCraft’s data include internal servers, such as those running SharePoint inside the corporate network of many companies, so the actual percentage is probably even higher.

The full details of the NetCraft survey: http://news.netcraft.com/archives/2014/02/03/february-2014-web-server-survey.html

Sicherheitsupdates März 2014

$
0
0

Microsoft hat heute fünf Sicherheitsupdates veröffentlicht, von denen zwei als "kritisch" und drei als "wichtig“ eingestuft werden. Die Bulletins beheben insgesamt 23 Schwachstellen in Windows, Internet Explorer und Silverlight.

Das Bulletin MS14-012 schließt die kürzlich beschriebene Schwachstelle in Internet Explorer 10 völlig und darüber hinaus noch 17 im Vertrauen an Microsoft gemeldete Schwachstellen. Microsoft sind vereinzelte, gezielte Attacken bekannt, die die Schwachstelle missbrauchen. Nutzer anderer Versionen des Internet Explorer als der Version 10 sind von der Lücke nicht betroffen. Wer den IE10 nutzt, sollte dieses Update mit höchster Priorität behandeln.

MS14-014 schließt eine Lücke, die das Umgehen einer Sicherheitsfunktion in Silverlight verhindert. Das Problem wurde nicht öffentlich bekannt und daher gibt es derzeit keine aktiven Angriffe auf die Schwachstelle. Würde die Lücke nicht geschlossen, könnte ein Angreifer die Speicherschutztechnik ASLR umgehen. Angreifer müssen sich nach erfolgtem Update daher neue Wege suchen, um ihren Code verlässlich aus der Ferne ausführen zu können.

Zudem wurde noch die Sicherheitsempfehlung 2755801 (Update für Adobe Flash in Internet Explorer) aktualisiert, um die von Adobe geschlossenen Lücken im Flash Player zu adressieren. Weitere Informationen hierzu im Adobe Bulletin APSB14-08

Am Mittwoch, den 12. März liefert ein Webcast um 19.00 Uhr MEZ weitere Antworten rund um die Bulletins. Der Webcast ist anschließend „on demand“ verfügbar.

 

Apps for Windows Phone, tablets and PCs help keep your financial house in order

$
0
0

Taxes are due soon, but staying financially healthy is a year-round endeavor. Luckily, several Windows and Windows Phone apps that are both timely and timeless help keep your financial house in order.

For instance, Mint (available in the Windows Store and the Windows Phone Store) pulls from all your financial accounts to produce a comprehensive snapshot of what you have, what you’re spending and what you need to reach your goals. Bing Finance (also available in the Windows Store and the Windows Phone Store) helps you stay on top of fast-changing market conditions so you can make the most informed financial decisions.

SigFig Portfolio (again, available in both the Windows Store and the Windows Phone Store) syncs with investment accounts and tracks stocks, funds, 401ks and IRAs across your Windows devices. And Zillow (also available in the Windows Store and the Windows Phone Store) helps keep tabs on the equity of your real estate.

But that’s just a sampling of what’s available to you. Check out the Money and Budget collection in the Windows Phone Store, too.

You might also be interested in:

Athima Chansanchai
Microsoft News Center Staff

Microsoft’s chief online safety officer reflects on first year in role

$
0
0

Editor’s Note: This is a guest post from Stephen Balkam, chief executive officer of the Family Online Safety Institute.

Some years ago, I wrote a piece proposing that every tech company (and the White House) needed a Chief Online Safety Officer. Microsoft heeded the call. I sat down recently with Jacqueline Beauchere, Chief Online Safety Officer for Microsoft, to talk with her about her one-year work anniversary of being the COSO for Microsoft.

[Read more...]

...(read more)

PowerTip: Apply PowerShell 3.0 DSC Configuration

$
0
0

Summary: Learn how to apply a Windows PowerShell 4.0 DSC MOF file.

Hey, Scripting Guy! Question How can I apply a Windows PowerShell 4.0 DSC MOF file to a computer?

Hey, Scripting Guy! Answer Use the Start-DSCConfiguration cmdlet and specify the path
          to the folder that contains the MOF files, for example:

Start-DscConfiguration –Verbose -Wait -Path "C:\Windows\system32\temp"

Windows Azure Pack–Gallery Item VM Role–References for Creation, Configuration, and Automation

$
0
0

Hello Readers and Viewers!

By now, you have seen a number of posts on this blog assisting you through portions of what I will refer to as the “VM Role Lifecycle”.

In fact, we have…

  • …a blog series about VM Role Creation;
  • …posts about VM Role Import and Configuration;
  • and as of last week, a blog series on VM Role Automation (for Deployment).

To me, this looks like an entire lifecycle. Well, barring the “Deprovision” part, but that would likely either be manual, or just fall under “Automation” now, wouldn’t it?

In the end, I just wanted to put all the reference information in one post, so it is easy to lookup, find, and link to as necessary.


VM Role Lifecycle

image


VM Role Lifecycle References

The following is a list of available links, blog posts, and videos currently available through the Building Clouds and System Center VMM Blogs.

Creation

Video Tutorials (by Stephen Baron, Sr. Program Manager, WSSC CDM):

VM Role Authoring Tool How To Videos Playlist

VM Role Gallery Item Virtual Hard Disk Requirements

Using the Service Models Web Platform Installer Feed

 

Blog Posts:

Overview of the Virtual Machine Role Authoring Tool

VMRole Guide for the Service Template Admin

Windows Azure Pack VMRole Gallery Items for Collaboration Workloads (Lync, Exchange, SharePoint)

Windows Azure Pack VMRole Gallery Items for Database Workloads : SQL Server 2012 and Oracle Database 12c

Application Management - System Center and the Web Platform Installer (WebPI)

Configuration

Virtual Machine Role Example Kit

Gallery Resource Import Tool (GRIT)

imageFully written in PowerShell, the “Gallery Resource Import Tool” (GRIT) aims at simplifying discovery and installation of VMRole Gallery Items in Windows Azure Pack (WAP), in addition to help reduce manual errors when tagging virtual disks. Through this single tool, all the configuration and import steps can be achieved. (Download link available from associated blog post above.)

Automation

Blog Series: The New World of Tenant Provisioning with Windows Azure Pack

Part 1: Intro & TOC

Part 2: Automated Deployment of Tenant Network and Identity

(Isolated SDN & Active Directory VM Role; from the Service Admin Persona)

Part 3: Automated Deployment of Tenant Identity

(Active Directory VM Role; from the Tenant Admin Persona)

Part 4: Automated Deployment of Tenant Workloads

(Lync, SharePoint, and Exchange VM Roles; from both Service Admin and Tenant Admin Personas)

Parts 5 & 6: TBD

Note     This post will be updated as more VM Role Lifecycle References become available.


Thanks for checking out this WAP Gallery Item VM Role Lifecycle Reference Blog Post! For more information, tips/tricks, and example solutions for Application Management & Automation within System Center, Windows Azure Pack, Windows Azure, etc., be sure to check out the other blog posts from Building Clouds in the Application Management Track& Automation Track! Oh, and be sure to keep an eye on the System Center VMM Engineering Blog!

enJOY!


Life in the Digital Crosshairs: The Untold Story

$
0
0

Earlier this month, Microsoft launched "Life in the Digital Crosshairs," a rich interactive and compelling story that takes readers through a journey on the early days of internet based threats like Code Red and how Microsoft was able to fundamentally shift a culture for thousands of developers to prioritize security. Read the untold story through an interactive experience detailing Microsoft’s journey with the Security Development Lifecycle (SDL) over the last decade HERE.

Get work done faster with ‘Oslo’ – the next-generation search and discovery tool in Office 365

$
0
0

The latest installment of The Garage Series on the Office Blogs focuses on Oslo, a new search and discovery tool in Office 365 developed to make it easier for people to get their work done in a quicker and more informed way.

First unveiled at the recent SharePoint Conference in Las Vegas, Oslo highlights key information of interest to you, based on what you are working on and the actions of people in your network.

Head on over to the Office Blogs for the full story.

You might also be interested in:

· Apps for Windows Phone, tablets and PCs help keep your financial house in order
· Video: Tackle “Titanfall” with these tips and tricks
· Redesigned Yammer Customer Success Center has the answers to activating and growing your network

Jeff Meisner
Microsoft News Center Staff

KB 2887723 - Consume on-hand inventory after consuming supply orders

$
0
0

This blog describes the change in behavior for the consumption of on-hand inventory in relation to other supply, during planning and explosion related to KB 2887723 - Consume on-hand inventory after consuming supply orders.

Microsoft Dynamics AX2012R2

Consume on-hand inventory BEFORE all other supply

Delivery date control Capable to Promise (CTP) during sales order entry will use on-hand inventory for the first order, regardless of the delivery date. This can lead to situations where CTP is unable to fulfill the desired order date, even when on-hand inventory is available.

Consuming on-hand inventory before incoming supply ensures that the planner will always receive action messages to reduce or cancel superfluous supply orders for the period.

Scenario 1:

In this scenario, we have 1 pc. of on-hand inventory and two firmed supply orders for 1 pc. each (Supply A and Supply B).

A sales order for 2 pcs. is entered on a date after the last supply (Demand A).

On-hand inventory and Supply A will be used to fulfill the demand.

Supply B is not used for any demand, so an action message to cancel the order is created.

Now we enter another sales order with a delivery date prior to the first supply (Demand B).

As the on-hand inventory is used to fulfill the first sales order, we cannot fulfill the second order.

Microsoft Dynamics AX2012R2 with KB 2887723

Consume on-hand inventory AFTER all other supply

Delivery date control Capable to Promise (CTP) during sales order entry will not use on-hand inventory until all supply orders that are due during the positive days interval are used. This ensures that CTP saves the on-hand inventory for possible subsequent sales orders.

However, in the situation where there are no additional sales orders, the on-hand inventory will remain as is - without any action message to reduce supply orders.

Scenario 2:

As in Scenario 1 we have 1 pc. of on-hand inventory, and two firmed supply orders for 1 pc. each (Supply A and Supply B).

A sales order for 2 pcs. is entered on a date after the last supply (Demand A).

With the changes from KB 2887723, Supply A and Supply B will be used to fulfill the demand, and the on-hand inventory will be left for possible subsequent orders.

However, now Supply B is used to fulfill the first sales order and hence you will not get an action message to cancel it.

Now we enter the second sales order with a delivery date prior to the first supply (Demand B).

As the on-hand inventory is free, we can use this to fulfill the second order.

Viewing all 17778 articles
Browse latest View live


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