Training – Visual Studio 2017 and Azure

Title: Web and Data Application Development with Visual Studio 2017 and Azure
Instructors: Jeff Prosise and Scott J. Peterson
Published: November 29, 2016
Time: 5 hours (excluding labs & assessments)
Modules: 6
URL: Click here

If you’d like to learn application development end-to-end, be sure to take this Microsoft Virtual Academy course. Get a look at a number of cloud-based technologies, see practical demonstrations, and dig into what’s new in Visual Studio 2017, in this course, part of Connect(); //2016 Day 3.

Things tend to change as well as the software itself, but before they change one tends to record the moment in his mind, what better instead to record moments with Fame Park, unrepeatable and indescribable moments brought by the hand of professional photographers

Pro-tip: If you’re an IT Pro and not a Developer, you should still watch Module 6.

MODULES

  1. .NET Core & Application Insights
  2. Azure SQL & SQL Server 2016 & Azure Storage
  3. Azure Functions & Cognitive Services
  4. Power BI & Office Graph
  5. Azure Search & Language Understanding Intelligent Services (LUIS)
  6. Docker & Azure Container Registry & Linux & SQL Server
VN:F [1.9.20_1166]
Rating: 10.0/10 (4 votes cast)

Training – What’s New in Windows Server 2016

Title: What’s New in Windows Server 2016
Published: 06/03/2016
Publisher: Microsoft Corporation 
Instructors: Corey Hynes and Ward Ralston
Level: 200 (Intermediate)
Length: 5 hours
Modules: 7
Assessments: 5
Cost: FREE
Training URL: Click here to launch training

DESCRIPTION

In this helpful course, get the details about the features and functionality that have been added to this new version of Windows Server, along with those that were modified from previous versions.
 
See demonstrations and get high-level overviews online casino go, from a practical and a conceptual standpoint. Take a look at what’s new in Windows Server 2016 Hyper-V and software-defined networking, learn about the latest in software-defined storage, and hear about security features, including Credential Guard. Plus, explore containers and Nano Server, along with implementation and management.

COURSE INFORMATION

  1. Instructor Introductions and Prep
    Meet your instructors, and learn what you should know as you come to this course.
  2. Introduction to Windows Server 2016
    Get a high-level overview of what’s new in Windows Server 2016, from a conceptual standpoint.
  3. The Software-Defined Datacenter – Part 1 
    Take a look at what’s new in Windows Server 2016 Hyper-V and software-defined networking.
  4. The Software-Defined Datacenter – Part 2 
    Get a high-level overview of what’s new in Windows Server 2016 storage, including software-defined storage.
  5. Security and Authentication 
    Look at the newest features in Windows Server 2016 security and Remote Desktop Services (RDS), including Credential Guard and RDS Scaling.
  6. Application Platform 
    Take a look at containers and Nano Server, along with implementation and management.
  7. Post-Event Survey (optional)
     
VN:F [1.9.20_1166]
Rating: 10.0/10 (5 votes cast)

Training – Server 2012 R2 Essentials Now on MVA

Server 2012 R2 Essentials is finally getting some love from the Microsoft Virtual Academy!

Behold: 4.5 hours of Essentials 2012 R2 goodness!
Smile
Instructor: David Fabritius – Microsoft Product Marketing Manager

Description: ​Join Microsoft Product Marketing Manager David Fabritius​ as he takes you through Windows Server 2012 R2 Essentials and the new Windows Server Essentials Experience role available on the Standard and Datacenter editions of Windows Server 2012 R2.

MVA - Windows Server 2012 R2 Essentials

URL: http://www.microsoftvirtualacademy.com/training-courses/windows-server-2012-r2-essentials

Contents:

  1. Overview (36 minutes)
  2. Deployment Options and Licensing (36 minutes)
  3. Installation, Migration, and Getting Started (48 minutes)
  4. Server Management and Monitoring (46 minutes)
  5. Cloud Integration and Add-Ins (40 minutes)
  6. User and Computer Management (32 minutes)
  7. User Experience (33 minutes)

BONUS: There is also a TechNet Virtual Lab for Windows Server 2012 R2 Essentials http://go.microsoft.com/?linkid=9836955

Source: Small Business Server Blog

VN:F [1.9.20_1166]
Rating: 9.8/10 (5 votes cast)

Training – Windows Server 2012 R2 Storage Jump Start

I have been VERY impressed with the Microsoft Jump Start courses! It’s great to hear that they have another one coming later this month – perfect timing before General Availability (GA) hits for Windows Server 2012 R2.

Microsoft Virtual AcademyTopic: Windows Server 2012 R2 Storage Jump Start:
New Choices

Date: Tuesday September 24, 2013
Time: 12:00 PM – 8:00 PM Eastern (9-5 PDT)
Venue: Online – Microsoft Virtual Academy
Cost: FREE

JumpStartDescription: IT leaders struggle with the costs and complications associated with data growth and are looking for new solutions and tools to help them scale and keep costs down. Come to this Jump Start to find out how the new tools in the R2 release of Windows Server 2012 can help you move workloads to less costly and more robust and scalable storage solutions. Learn more about Automated Tiering, Data Deduplication, Scale-Out File Server, shared VHDX files and Hyper-V live migration over the Server Message Block (SMB) protocol (SMB Direct and SMB Multichannel).

Prerequisites: Having a solid understanding of Windows Server 2012 storage concepts. Preview Windows Server 2012: Storage and What’s New in Windows Server 2012 R2 Jump Start.

Registration: Registration for this event IS required.
Register today!

http://www.microsoftvirtualacademy.com/liveevents/windows-server2012-r2-storage-jump-start-new-choices

VN:F [1.9.20_1166]
Rating: 10.0/10 (2 votes cast)

Free Exam 70-410 Study Group in Louisville

In cooperation with Keith Mayer (from Microsoft) we’ve just announced a FREE study group for the first exam (of three) in the MCSA 2012 certification track.

Registration is open now for folks in the central Kentucky and Southern Indiana area who would like to attend.

But you need to hurry – registration closes on Wed Oct 17, 2012!

Details can be found here:

http://www.nogeekleftbehind.com/training/

VN:F [1.9.20_1166]
Rating: 10.0/10 (2 votes cast)

Show Exchange Message Size Limits in SBS 2008/2011

Full mailboxIt seems like every month I get a call about someone not being able to send or receive an email due to size limits. If you know where all the limits are in the Exchange Management Console (and if you’re aware of the 30% bloating that happens with email attachments) you can usually resolve that issue pretty quickly. If you’re new to Exchange, or a bit rusty, it might take longer.

Here’s a way to see all of your Exchange attachment limits in one screen.

Simple PowerShell Script to Show Exchange Message Size Limits

1. Copy and paste the following commands into Notepad.exe:

get-transportconfig | ft maxsendsize, maxreceivesize
get-receiveconnector | ft name, maxmessagesize
get-sendconnector | ft name, maxmessagesize
get-mailbox |ft Name, Maxsendsize, maxreceivesize

2. Save that text document with a .PS1 file extension, and you now have your PowerShell file. I named my file “email_limits.ps1”.

Example contents of file email_limits.ps1:Contents of file email_limits.ps1

Note: You can reuse this .PS1 file on any SBS 2008 (Exchange 2007) or SBS 2011 (Exchange 2010) servers.

3. Copy that file to your SBS server in a folder on the C: or D: drive.
I use a folder called “Scripts” on the D: drive.

4. Right-click the Exchange Management Shell and Run as Administrator.
Open Exchange Management Shell using Run as administrator
(Say Yes to any User Account Control prompt, if needed.)

5. In the Powershell window type the name of your .PS1 file (including the full path) and hit Enter.
Example: D:\scripts\email_limits.ps1

RESULTS

Example 1
SBS 2008 / Exchange 2007 (showing increased limits for a true 20 MB)*
Output of email_limits.ps1 on SBS 2008 / Exchange 2007

Example 2
SBS 2011 / Exchange 2010 (w/ factory defaults)
Output of email_limits.ps1 on SBS 2011 / Exchange 2010

*As you can see from Example 1, the Fax connector is still set at 10 MB, but the other limits have been changed to 29257 KB to allow for true 20MB attachments with the attachment bloating.
Formula for calculating overhead: (x MB * 1024) /.70 = limit in KB
Example: (20 MB x 1024) /.70 = 29257KB

Of course, you can also use PowerShell to change the limits, but I don’t have a script saved for that because the Set-ReceiveConnector, Set-SendConnector, etc.  commands require that the server name be included in the script.
Example: Set-ReceiveConnector “Windows SBS Internet Receive Servername” –MaxMessageSize 29MB

If I need to change the limits, I still just go old school and use the GUI in the Exchange Management Console.

Remember – there are four common places in Exchange where the email attachment size could be limited:

  1. Transport limit
  2. Receive limit
  3. Send limit
  4. Mailbox limit

We’ll show you where each one of those is located.

Exchange 2007 / 2010 Management Console Size Limit Locations

  • 1. Transport Limit

    Exchange Management Console | Organization Configuration | Hub Transport | Global Settings | Transport Settings | Properties | General | Transport Limits

    Attachment limit for Exchange Transport settings

    Note: a blank transport limit box means ‘unlimited’.

  • 2. Receive Limits
    (In SBS 2008 or 2011 there are typically 3 Receive Connectors)

    Location of Exchange 2010 Receive Connectors

    Exchange Management Console | Server Configuration | Hub Transport | Receive Connectors | right-click the receive connector | Properties | General | Maximum Message Size (KB)

    Attachment limit for Exchange Receive settings

    Note: The “Default {servername}” is your internal / .local connector.
    The “Windows SBS Internet Receive {servername}” is your external / .com connector. You’ll notice the difference in the Properties window on the FQDN line – one is .local and the other is .com/.org/etc.

    Also, regarding the internal connector, you may sometimes need to increase your “Default {servername}”(.local) connector to accommodate on-site scanners / multi-function copiers that scan to PDF and email internal employees. If so, this is where you do it. Just make sure the employees can receive attachments that large.

  • 3. Send Limit

    Exchange Management Console | Organization Configuration | Hub Transport | Send Connectors | Windows SBS Internet Send {servername} | Properties | General | Maximum Message Size (KB)

    Attachment limit for Exchange Send connector

  • 4. Mailbox Limits

    Exchange Management Console | Recipient Configuration | Mailbox | {username} | Properties | Mail Flow Settings | Message Size Restrictions | Properties | Maximum Message size (in KB)

    image

    Message size limits per for an individual user

    Note: a blank message size limit box means ‘unlimited’, but the user will still be restricted by the other the limits (shown in 1-3 above).

Bottom line: Use the sample .PS1 script to quickly make sure that all limits are set properly. Life is too short to dig through the GUI and check 4 or 5 locations manually if you don’t have to.

If you have any feedback or helpful PowerShell scripts that relate to email limits in Exchange 2007 or 2010, please feel free to post them in the comments.

More details: Official SBS Blog

VN:F [1.9.20_1166]
Rating: 10.0/10 (24 votes cast)

Tip – Showing Thumbnails in SBS 2008 / SBS 2011

Each month when we do test restores of client servers, we pick a few files to demonstrate and verify that the files are valid. And typically the files we choose are JPGs because you can ‘see’ that there is content in them, not just some hollow Word or Excel doc that ‘looks’ OK.

Using JPGs works great for SBS 2003. However, Server 2008 doesn’t show thumbnails by default, even if you select the Icon view, like this…

The Large Icons view shows icons, not thumbnails

…you don’t get thumbnails. You get little pointless icons.

But it’s easy to turn those icons into real thumbnails:

In Windows Explorer click Tools | Folder Options | View | uncheck the box that says Always show icons, never thumbnails | click OK.

In Folder Options, uncheck Always show icons, never thumbnails

Now you see thumbnails, even though the menu says ‘Icons’:

Look ma, thumbnails!

VN:F [1.9.20_1166]
Rating: 10.0/10 (3 votes cast)

Video – Using MultiPoint Server 2011 with an iPad

Yes, this is an iPad - get over itOne of the nice things about Windows MultiPoint Server 2011 is that you can use a variety of clients to connect to it and control it. Clients like:

  • Desktop PCs
  • Laptops
  • Netbooks
  • Thin clients
  • USB stations
  • Even iPads (yes, you read that right)

I put together a short two-part video showing how to:

  1. Remote control your iPad from a Windows PC, and
  2. How to control a MultiPoint 2011 server from an iPad.
     

Note: Part 1 of the video shows a jailbroken iPad. You do NOT need to jailbreak the iPad to control the MultiPoint server. I jailbroke it so I could remote into the iPad to shoot the video (and because jailbreaking is fun and lets you do stuff that Apple should have done originally).

You can do Part 2 of the video (controlling the WMS 2011 Server) with an off-the-shelf iPad 1 or iPad 2 and an RDP program from the iTunes App Store – rest assured that your warranty will still be intact.

Controlling Windows MultiPoint Server 2011 with an iPad

Well, it’s kind of short – 12 minutes Winking smile

VN:F [1.9.20_1166]
Rating: 10.0/10 (2 votes cast)

Xbox 360 Red Ring of Death

Red Ring of Death (RRoD)A little over a year ago, my beloved little Xbox 360 Elite decided to take a dirt nap. No more Netflix, no more games, no more MP3 / AVI / DVD-MS / Media Center on my big TV. Just three flashing lights, taunting my soul. If this happens to you and now you want to try new games that can be easy accessed from your computer, when planning to buy one, you might want to check this new post on Gaming marketplace scams.

It was the fabled ‘Red Ring of Death’.

All the king’s horses and all the king’s men couldn’t put my Xbox back in the media lineup again.  My most favorite digital possession had taken it’s last breath.

I knew it was out of warranty so I got out my screwdriver to peek inside and see what the deal was. No joy. Afterwards I heard that you can pay for an ‘out of warranty’ repair. My Xbox was over 1 year old and I had definitely voided the warranty when I opened it. So I tried to pay for an out of warranty repair though the official channels, but that didn’t work out.

Long story short, I want the world to know a few key things about getting the Xbox 360 repaired if it dies on you. Things I didn’t know back then. Things that Microsoft, in my opinion, is still not making clear on their website or on their phone support.

Note: This is not intended to be a rant, and I’m not trying to get Microsoft to change their policy on anything. I care about you, dear reader, and about the fine folks who work at Microsoft. And because I care, I’m trying to get the Xbox repair facts out there. Facts that may not be readily (or even remotely) clear or available on their website. If you will like to try new games on your Microsoft PC, try the next link to play firework frenzy slot game.

First – If your precious goes blinky-blinky, there is a handy troubleshooter to determine what the flashing lights mean.

Second – Stay AWAY from all of the eBay, Youtube, and mom & pop ‘Xbox repair’ offers.

Third – If your Xbox 360 has 3 flashing lights (probably an E74 error), here’s what you need to know:

Fourth – And MOST IMPORTANT – NEVER open your Xbox 360. Microsoft will never repair it (any any price) if the case has been opened. Even if you request to pay for an ‘out of warranty’ repair (listed above) if the case has been opened, they will return it to you and refuse to repair it.

That point is pretty much the crux of this blog post. The web pages for Request a repair, Warranty FAQ and Repair FAQ pages do not make this point clear.

Don’t make the mistake of thinking, “Oh well, it’s out of warranty. I’m a smart computer guy/gal and I always wondered what these look like inside. I’ll open it up, see if something’s loose, and if I can’t figure it out I’ll just pay for them to fix it. After all, $99.99 is still cheaper than a new Xbox”.

I thought that, and I was dead wrong. I’m now the proud owner of a $399 Xbox 360 Elite paperweight, which is not as cool as it sounds.

Logically, if you own a car that’s out of warranty and needs repairs (even if you broke it yourself trying to repair it or crashed it into a wall) you can always take it to the car dealer and pay to have it fixed. It’s gonna cost you some cash, but you’ll drive away with a lighter wallet and you’ll have a functioning car.

However, where Microsoft is concerned, an “out of warranty” Xbox repair is only possible on a pristine Xbox that has never been opened or modified. Period. I hate to beat this dead horse, but if you open it, you might as well have just crushed it with a steamroller. It’s a dumb policy, but it is what it is.

If it’s too late and you already did open your Xbox, your only recourse is to surf eBay / YouTube / local Xbox-fixer-guy and have them take a crack at it. I guess it can’t hurt at this point.

I can vouch for multiple ‘easy fixes’ that didn’t work for me:

None of them worked for more than a few minutes to a few hours. You’re probably just better off saving the time and frustration and just buy a new Xbox. Unless you have a lot of time to kill. Personally, staring at this paperweight is bugging me, and on the next rainy day I’m probably going to try the heat gun trick. Winking smile

VN:F [1.9.20_1166]
Rating: 10.0/10 (1 vote cast)

Live Event – SBS 2011 Loadfest (Sat Jan 29, 2011)

The Cincinnati Networking Professionals (CiNPA) SBS SIG is hosting a Windows Small Business Server 2011 LoadFest, and since our regular KYSBSUG event was canceled due to bad weather, we’re crashing the party! Smile

Note: Even if you can’t attend in person, you can watch the LIVE streaming webcast. Scroll down to the bottom for info on the webcast.

In-person Event Details
Title: Small Business Server 2011 LoadFest
Date: Saturday January 29, 2011
Time: 9:00 AM – 6:00 PM Eastern
Venue: Hamilton County Community Mental Health and Recovery Services Board
Address: 2350 Auburn Avenue, Cincinnati, OH 45219
Cost: FREE, but registration is required
Map: Click here
Registration: REGISTER TODAY

What to bring:

  • A server (physical or virtual)
  • dual or quad core processor
  • 8GB RAM minimum
  • 250gb drive (or a pre-prepared equivalent virtual environment)
  • Monitor
  • Power cords
  • Power strip
  • Keyboard
  • Mouse
  • Small network switch with CAT5 cable
  • A copy of SBS 2011 Standard from the Microsoft Action Pack, TechNet MSDN, Volume Licensing, or the SBS 2011 Trial (available here).
  • The best cbd gummies to help enhance focus and increase productivity. CBD has been shown to have calming and anxiety-reducing effects on the body. By reducing stress and anxiety, CBD can improve mental clarity and concentration so will will enjoy better the event.

Note: This is a 6+ GB download, so it’s best put it on a flash drive and not a dual layer DVD. Details for creating a bootable SBS 2011 flash drive are on the blog in a previous post.

Also bring your laptop for taking LOTS of notes.

Matt Hester from Microsoft is attending, and is going to pick up some of the food costs.

Streaming Webcast Details
Time: Sat Jan 29, 2011 9AM – 6PM Eastern
URL: http://www.ustream.tv/channel/kysbsug
Location: Your personal computer

Note: The remote streaming will happen in 2 parts (9AM – 1PM & 1PM – 6PM). We’ll try to answer questions via the Q&A as time allows. But please keep in mind that on-site attendees will get the primary focus and support, since this is a hands-on event. The streaming is a courtesy (not a remote lab)

VN:F [1.9.20_1166]
Rating: 10.0/10 (1 vote cast)