Windows Intune with Windows 8.1 OS additional features

Hi,
I want info on following question
1. List of features if I am using windows intune + windows 8.1 desktop OS (if I use windows 8.1 OS windows intune will provide additional feature over windows 7 OS)
2. List of features if I am using windows intune + windows 7 desktop OS
Regards,
Mahesh

I know this is old but I’m trying to clean up old posts. Did you ever solve this? If so it would be good if you could post the solution to assist others. If not, at this stage,
as nobody has answered, I would recommend that you call Intune support.
You will find your local Intune support number here
http://technet.microsoft.com/en-US/jj839713.aspx
Gerry Hampson | Blog:
www.gerryhampsoncm.blogspot.ie | LinkedIn:
Gerry Hampson | Twitter:
@gerryhampson

Similar Messages

  • Windows Intune with SCCM 2012 R2.

    Windows Intune with SCCM 2012 R2.
    I am able to download Certificate Signing Request (CSR).
    When I submit CSR file to Apple Push Certificates Portal I get following prompt:
    Do you want to open or save create02fe592d.json (132 bytes) from identity.apple.com?
    I am unable to get the APN Certificate.

    That is a known issue with Internet Explorer and the Apple Website.  If you just go back to the main page where all your certificate are located you can download it from there.
    Jon L. - MSFT - This posting is provided "AS IS" with no warranties and confers no rights.

  • Can I install Windows 7 System Builder Addition on a MacBook Pro?

    Can I install Windows 7 System Builder Addition on a MacBook Pro?

    rmsmac,
    do you mean Addition, or Edition? Is it a 32-bit version of Windows 7, or a 64-bit version of Windows 7?
    Why don’t you give it a try, and report back on whether you’re able to or not?

  • What date is G-Cloud Intune with SA (Version 5) being replaced with version 6?

    I understand that Windows Intune with SA, sold as G-Cloud, version 5 is being expired, and will be replaced with version 6.
    With version 5, we have the option to purchase the license "with SA", which enables Enterprise level. Since version 6 no longer has the option to purchase "with SA"; I need to know from what date the version 5 is going to expire.
    How long will existing version 5 licenses run until?
    Thanks
    Jim

    For Microsoft Intune questions, please ask them here: https://social.technet.microsoft.com/Forums/en-US/home?category=microsoftintune
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

  • The latest version of iTunes does not allow me to open a playlist in a separate window.  I need this feature.  Is there another way?  You used to be able to double click a playlist and have it appear in a new window.

    The latest version of iTunes does not allow me to open a playlist in a separate window.  I need this feature.  Is there another way?  You used to be able to double click a playlist and have it appear in a new window.

    Others have commented on this too.  It seems to be one of the 'improvements' of the newer version you are supposed to embrace with joy as an exciting new development.  You can send feedback to Apple but realize you may be perceived as standing in the path of  progress.
    http://www.apple.com/feedback/itunesapp.html

  • Windows Server 10: Soft Restart Feature

    Ladies and gentlemen,
    so Soft Restart was intended to give a bit of "boost" to slower server restart process: avoid hardware scan. Idea is great the only problem is - it does not work so far. Whole story here:
    Windows Server 10: Soft Restart Feature
    http://www.starwindsoftware.com/blog/soft-restart-feature-the-great-idea-from-microsoft/
    Hope will help MSFT team to fix the issue :)
    Anton
    StarWind Virtual SAN clusters Hyper-V without SAS, Fibre Channel, SMB 3.0 or iSCSI, uses Ethernet to mirror internally mounted SATA disks between hosts.

    Hi Manyna,
    I am not familiar with the function you used here.
    For Hyper-V changes in Windows Technical Preview, you may take a look at the link below:
    What's New in Hyper-V in Technical Preview
    Best regards
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Scripts stop working when extended with "additional features"

    I have a couple of scripts that work fine in both Pro and Reader, but when I Save As -> Reader Extended PDF -> Enable Additional Features, they stop working (in both Pro and Reader). Other scripts in the same form continue to work just fine. I'm at a total loss, and so are my IT folks (who admittedly aren't exactly form/JS/Adobe experts...)
    I've been fighting with this problem off and on for a week or so now, and I've tried a couple of different approaches - I'm a JS muddler, and I'm sure there are more effective ways to do what I want to do. But everything I try gives me a different problem . I'm going to try to separate out the different issues in different posts...but I'm getting pretty confused!
    For what it's worth, the problem scripts are on the first and last master page, while the ones that work are on regular pages.
    The goal is to reuse a partially filled-out form for several different phases of an approval process. Each version gets a different title, and an additional subform is visible during the 2nd, 3rd, and 4th phases.
    Here's the overall workflow:
    Phase 1
    The form starts out with the Phase 1 title and with the additional subform "hidden."
    A remote user fills out the form and returns it to the program coordinator.
    Phase 2/3/4
    The coordinator saves a copy of the form with a different name.
    The coordinator checks a "For admin use only" checkbox to display a radio button group. Each option changes the title and sets the additional subform presence to "visible."
    The coordinator unchecks the "For admin use only" checkbox to hide the radio buttons.
    The title is in a text field. The scripts change the rawValue of the field for each option.
    In this case, I have the following script in both the initialize and calculate events of the text box:
    if   (S_SelectTitle.S_Actions.RB_SelectTitle.rawValue == 2)
         this.rawValue = "Phase 2";
    else if (S_SelectTitle.S_Actions.RB_SelectTitle.rawValue == 3)
         this.rawValue = "Phase 3";
    else if (S_SelectTitle.S_Actions.RB_SelectTitle.rawValue == 4)
         this.rawValue = "Phase 4";
    else
         this.rawValue = "Phase 1";
    and similar code in the initialize and calcuate events of the subform to make its presence "visible" or "hidden." (I've used this initialize/calculate event strategy before, it's always worked fine. But I"ve run into problems with it in one of the alternate approaches i've been using on this form, so I"m totally open to other ways of doing it...)
    Before I extend the form for Reader, it works fine. The title changes correctly depending on which button is selected, the new subform appears at the end, and the radio buttons go away when the box is unchecked.
    After I extend it for Reader, nothing works except the checkbox. The title doesn't change, and the subform never appears.
    Help? Thanks in advance!

    Well, it seems that interactive objects on master pages are problematic. Using a few message boxes, we discovered that the Initialize event fires each time a radio button on a master page is selected, but not when the radio button is in the body of the form.
    So each time we clicked the radio button on the master page, the Initialize event set the value of the exclusion group right back to the default value (which was null, in this case). So the title never changed, because the radio button setting didn't stick.
    For this form, I figured out a way to remove the radio buttons from the master page. Not only do the titles in the headers change correctly, the form also works with the Reader extensions enabled!
    I'm not sure which issue was hanging me up -- the buttons on the master page or Reader extensions -- or if they're tied together somehow. But the moral of the story for me, anyhow, is no more buttons on master pages. Hope this helps someone else!

  • Cinemax is now included with your package at no additional cost!

    Did anyone else get this email - will I save money or will this cost me more money? I assume save? Anyone have more details?
    Dear Customer:
    Good news for customers currently subscribed to the Ultimate FiOS® TV package. Cinemax is now included with your package at no additional cost!
    We will change your current HBO/Cinemax subscription to HBO only. Your account will be credited for the price difference between HBO/Cinemax and HBO from the effective date of the Ultimate Package change. Please note you may not see these reflected on your bill for several months.
    Additionally, if you are currently receiving an HBO/Cinemax promotion, you will continue to enjoy it against your HBO package for the duration of your promotional period.
    No action is needed on your part. We will take care of these changes for you!
    Thank you for choosing Verizon.
    Sincerely,
    Verizon

    I believe it means if you were getting a promotional rate of 1/2 off an HBO/Cinemax package it would continue although you were only getting charged for HBO.   Of course my experience was not as described above.   When I noticed the change on my bill today I called FIOS and learned that Cinemax was now included in my highest tier TV package.  I would only be charged for HBO  - HOWEVER the CSR could not apply a 1/2 discount to HBO.  So now I  pay more for HBO alone then I did for HBO/Cinemax together - $16.99 vs $12.50 (with the credit).   I just canceled HBO today. 

  • With the current up coming addition of Maverick will Apple still support and put out Updates for Mountain Lion?

    With the current up coming addition of Maverick OS will Apple still support and put out Updates out for Mountain Lion? I want to make sure my computer will still be secured.

    I'm sure that Apple will continue to provide support for Mountain Lion and other previous versions of their operating system. They have always provided updates for most versions of their software, even though newer versions were released.
    Roger

  • With BI7 to 3.0B end user get an additional features

    Hi,
    we are trying to upgrade to BI7.Apart from designing, do the end user get an additional features compared to earlier versions(3.0B) in the perspective of enduser only.

    Yes...There are lot many features...
    1) Improved query performance through BI accelerator
    2) PDF reporting you have Java and ABAP stack installed
    3) Flexibility of adding drop down menu within BEx report (after execution)
    4) The BEx reports looks more organized than that one 3.x versions.
    There are more in the list

  • I have been using the Firefox feature in which I could have multiple sets of tabs open but see only the set I was working with. I updated and now feature is gon

    I have been using the Firefox feature in which I could have multiple sets of tabs open but see only the set I was working with. I updated and now feature is gone. I had a small icon on the upper right side of my toolbar. I used it all the time to keep separate windows for news, financial items, travel plans, etc. Has this been removed from Firefox?

    Hi,
    The [https://support.mozilla.org/en-US/kb/tab-groups-organize-tabs Tab Groups] feature is still present. You can try to right-click the + after the last tab and [https://support.mozilla.org/en-US/kb/how-do-i-customize-toolbars Customize]. If the icon is hidden behind another, or if it's available inside the Customize mini window, you can place it back. If the problem persists, you can also try to '''Reset toolbars and controls:''' and '''Make Changes and Restart''' [https://support.mozilla.org/en-US/kb/Safe%20Mode Safe Mode] start screen.

  • Exploring additional features in BCS

    Hi ALL,,
    I have certain queries on some of the additional features that I am exploring in BCS namely
    1. How do I make document text mandatory in the manual posting ?
    2. How do I get the FS Item long text in the COI log in document node. Presently short text is displayed in the log ?
    3. What is the use of navigation mode in the consolidation monitor screen ?
    4. what is the difference between "Block" and "Block by User" options in the consolidation monitor ?
    Thanks
    Shivaprasad

    3. is it Web DynPro related?
    I've not used it before but noticed that in help there is talk about WebDynPro and navigation mode.
    Clicking it doesn't seem to make any difference on my Gui-accessed monitor.
    http://help.sap.com/saphelp_sem60ep1/helpdata/EN/b5/424f9c88970f48ba918ad68af9a656/frameset.htm
    WDPortalNavigationMode mode (required parameter)
    You must define the required navigation mode. There are three possible modes:
    ¡        WDPortalNavigationMode.SHOW_INPLACE
    This value starts the application in the same browser window.
    ¡        WDPortalNavigationMode.SHOW_EXTERNAL
    This value starts the application in a new external browser window (iView/page).
    ¡        WDPortalNavigationMode.SHOW_EXTERNAL_PORTAL
    This value starts the application in a new external portal window.

  • Adobe RH Server 6 = "Adobe RH6 + Additional features"

    Greetings to all :-)
    Right now, I'm working on the trial version of RH2002. My
    company and ofcourse all our members are new to RH. My PM was
    impressed on the help file which i developed using this trial
    version. At last, he decided to purchase the latest version of RH
    and he gave me a list and asked which one to purchase. Here is the
    list:
    No Item Rate
    1 RoboHelp Office 6 WIN (1 lic) Rs 55,400.00
    2 RoboHelp Office 6 Win (2 - 14 lics) Rs 53,600.00
    3 RoboHelp Office 6 WIN (15+ lics) Rs 52,500.00
    4 RoboHelp Server 6 WIN (1 - 7 lics) Rs 108,000.00
    5 RoboHelp Server 6 WIN (8+ lics) Rs 105,000.00
    I browsed the adobe site to know the latest version. I came
    to an understanding that "Adobe RH Server 6" has got more
    additional features that "Adobe RH6" and cooly said to him, that
    we'll go in for "Adobe RH server 6" (5th item specified in the
    list) I've also worked on the trial version of "Adobe RH6" but i've
    not even tried "Adboe RH Server 6" thinking that some additional
    features specified in the adobe site would be available in this.
    Lateron, i entered into the forum, to see if there were any
    topics discussed regarding this...ofcourse there were many...really
    i was much more afraid on seeing those relevant topics and kindly
    excuse me as i need some more clarity....Are these two separate
    products???. To go in for "Adobe RH server 6", should we purchase
    "Adobe RH6" also. I thought, if we purchase "Adobe RH Server 6", we
    will have get the same "Adobe RH6 software (Help authoring tool)"
    with some additional features". Pls give me your valuable inputs on
    this as this is killing me because i've already informed my PM
    without understanding the products in detail.
    Should I ask for "Adobe RH Server6" or "both 'Adobe RH
    Server6' and Adobe RH6'"
    Thanks a lot in advance!!

    Hi, Launcher1
    I certainly don't want to discourage you from looking at
    RoboHelp Server 6. At the same time I want to help you understand
    the differences.
    Your two main needs apparently are: to link and search among
    multiple merged projects. You can do that NOW with "plain" WebHelp
    (or FlashHelp) without RoboHelp Server!
    So, what would you get extra with RH Server 6 and what
    exactly are the Pro advantages? For that, you might want to take a
    look at my article on the Adobe Developer Network which covers
    Adobe RoboHelp Server 6.
    http://www.adobe.com/devnet/robohelp/articles/rhserver_06.html
    So, basically, the "Pro" version provided by RH Server 6
    gives you Feedback Reports on what your users are looking for and
    the ability to search the text of MS Word, Excel, Powerpoint and
    Adobe Acrobat PDF files which you cannot do with the "plain"
    RoboHelp 6. These are tremendous advantages and many companies find
    this worth the extra money. Remember, you don't have to buy RH
    Server for each author, only one copy for the server. The authors
    get RH 6.
    As for "porting" RH 6 to RH Server 6, that's simple. You
    really don't need to port them at all! You simply take the exact
    same project from the RH 6 authoring tool and publish it to the RH
    Server 6. So, it's not so much the tool you use to develop the
    project (it's the same in all cases). Rather, it is the destination
    of where you publish the project that makes the difference.
    Hope this helps. If it doesn't, ask some more!
    Thanx,
    john

  • Is it possible to add additional features, such as I had in iTunes? What I mean is: how could I add comments for example of an ebook; or the publisher?

    Is it possible to add additional features, such as I had in iTunes? What I mean is: how could I add comments for example of an ebook; or the publisher?

    Many thanks Brett, but probably I wasn't clear enough about my problem.
    I know that I'm able to include some notes, or to highlight paragraph; what I want to know if is it possible to make a summary of the book; or add additional features such as Publisher, if I read or not; language, etc. And show in the information for each book … In the application there's only: title, author, genre … How can add additional features as a reference for the ebook as a whole, and see them at the same level of the author, genre, etc.
    For example
    BOOK A          AUTHOR BRETT L     PHILOSOPHY     ENGLISH     TO READ     iTUNES STORE    
    The first three items are the default items … what I want to include is the others (as an example) … And create a box or something to make a summary of the book.
    Sorry for the bothering … but I was (and I suppose I'm not the only one) very comfortable with iTunes format for Music; but iBooks lost quite everything compared to iTunes; and it looks like a mere Kindle application.
    Many thanks in advance
    Gerardo Garcia Gorostidi

  • Hi, Is it possible to enable Adobe ReadersX users to save filled forms without enabling them to have access to the additional features as highlighting etc?

    Hi, Is it possible to enable Adobe ReadersX users to save filled forms without enabling them to have access to the additional features as highlighting etc?

    You can do that with individual pdf files using Adobe Acrobat to set the security.
    In Acrobat go to File>Properties>Security. Choose password security as the security method then choose "restrict editing and printing of the document..." and under "Changes allowed" choose "Filling in form fields and signing existing signature fields".

Maybe you are looking for

  • How to create customized long text in IDOC status record in WE02?

    Hi, In WE02 you can see the status of the idoc. If you double click on the short text that is coming in the status, you can see the long text. How do i customized my long text to that screen?

  • HT2434 How do I get my custom linux software to display at 1280x1024 on my iMac under Parallels? and stay that way when I reboot?

    How do I get my custom linux software to display at 1280x1024 on my iMac under Parallels? and stay that way when I reboot?

  • [solved] network

    Hi all, I've been trying to set network working on my desktop but haven't been succeeded till now.. I noticed a weird situation (at least to me) if I do ping google: ping -c 3 www.google.com I'll get in the final statistics time = 11149ms but if I do

  • PKGBUILD - does this look right

    My PKGBUILD simply needs to copy files from a zip file to /usr/share/java/Jalbum/skins/BananAlbum.  Here is what I have so far and it seems to work just fine.  Is there a more elegant way to do it? pkgname=bananalbum pkgver=6.1.4 pkgrel=1 pkgdesc="Ve

  • Problems with 16:9 display

    I have just finished my first 16:9 anamorphic project in FCP and I suspect I made some errors. Because I haven't had the free time to learn DVDSP I set the project up in iDVD6 for burning to DVD. Even though I specifically set the project up to play