Create a User Collection with installed specific software

Can someone help with Query to Create a User Collection with installed specific software.
I have created a collection for Computer Collection with installed specific software but i need to push apps on users and for that i need to create a user collection with specific software installed.
Thanks

Yes. I have created device collection with
installed specific software and used  this collection to pull report from out the box report for Primary Device users( Not sure about exact report name but similar) for
this collection. Did some excel work to find primary device user.
But looks like there is no straight forward solution. It would be great if i know how to import multiple users from a text/csv file into a User collection.
Thanks

Similar Messages

  • Create a site collection with dedicated content db with the help of server object model

    Hi,
     I have a requirement to implement a create a new site collection with dedicated content db. i have got 2 PowerShell scripts which does the same. first i will  create a content  db and then create the sitecollection with contentdb
    parameter with the created contentdb name.
    Now the site collection created must contain few doc libs and few splists with look up columns, people picker data type, multiline of text, single line of text,choice field. hence i am thinking the below approach:
     1) create a web template and include sp doclibs, splists , site columns in this.
     2) i am thinking of a ui design to create the below:
     These are called "projects" which is actually the site collection with the doclibs, splists and must be created by sharepoint admin on click of a link in my landing page.end users access these "projects"  aka 
    "site collections" and uploads the documents into these projects and collaborate.
    so my question is :  On click of a button can I create a site collection with a dedicated content db based on the web template created with the  hel of  server  object model?
    The other approach is on click of this button call the power shell script which accepts the sitecollection name and contentdb name as parameter. is this possible in  server obj.model ?
    passing a paramter from code behind- visual web part ui to power shell ?
    and it should create the site collec based on the web template and create the content db.
    my doubt #3 : will it not throw error "request timed out" when creating the site collec and contentdb from ui ?

    Try below:
    http://sharepoint.stackexchange.com/questions/21606/programmatically-create-a-site-collection-in-an-existing-mounted-content-databa
    PowerShell is just a wrapper for the object model. You shouldn't need to reference PowerShell in your feature, just create the new site collection with C# inside your feature. There's a blog post here that illustrates some code that may get you started.
    http://blog.mastykarz.nl/programmatically-creating-sites-site-collections-custom-web-template/
    http://blogs.msdn.com/b/vesku/archive/2014/06/09/provisioning-site-collections-using-sp-app-model-in-on-premises-with-just-csom.aspx
    # Enable the remote site collection creation for on-prem in web application level
    # If this is not done, unknon object exception is raised by the CSOM code
    $WebApplicationUrl = http://dev.contoso.com
    $snapin = Get-PSSnapin | Where-Object {$_.Name -eq 'Microsoft.SharePoint.Powershell'}
    if ($snapin -eq $null)
    Write-Host "Loading SharePoint Powershell Snapin"
    Add-PSSnapin "Microsoft.SharePoint.Powershell"
    $webapp=Get-SPWebApplication $WebApplicationUrl
    $newProxyLibrary = New-Object "Microsoft.SharePoint.Administration.SPClientCallableProxyLibrary"
    $newProxyLibrary.AssemblyName = "Microsoft.Online.SharePoint.Dedicated.TenantAdmin.ServerStub, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c"
    $newProxyLibrary.SupportAppAuthentication = $true
    $webapp.ClientCallableSettings.ProxyLibraries.Add($newProxyLibrary)
    $webapp.Update()
    Write-Host "Successfully added TenantAdmin ServerStub to ClientCallableProxyLibrary."
    # Reset the memory of the web application
    Write-Host "IISReset..."
    Restart-Service W3SVC,WAS -force
    Write-Host "IISReset complete."
    If this helped you resolve your issue, please mark it Answered

  • Want to create a user field with type alphanmumeric and structure text through coding

    i want to create a user field with type alphanumeric and structure text through coding.am using vb
    plz help me

    Hi.
    Please take a look at samples in SAP B1 SDK.
    Dim oUserFieldsMD As SAPbobsCOM.UserFieldsMD
    oUserFieldsMD = oCompany.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oUserFields)
    ' Adding "Name" field
    '// Setting the Field's properties
    oUserFieldsMD.TableName = #YOUR_TABLE_NAME#
    oUserFieldsMD.Name = "Name"
    oUserFieldsMD.Description = "Name"
    oUserFieldsMD.Type = SAPbobsCOM.BoFieldTypes.db_Alpha
    oUserFieldsMD.EditSize = #LENGTH_OF_FIELD#
    '// Adding the Field to the Table
    lRetCode = oUserFieldsMD.Add
    GC.Collect() 'Release the handle to the User Fields
    Hope it helps.
    Regards,
    Pawel

  • Trouble with installing ipod software need help!

    hey guys wonderingif anybody can help me I just recently purchased an ipod nano and had installed the ipod and itunes cd to my laptop. It downloaded everything but when i had connected my nano to my computer and opened up itunes an icon popped up and it said that "the software required for communicating with the ipod was not installed correctly. Please reinstall itunes to install ipods software." so I did many times and again the same message came up so i dont know what i am doing wrong! Please anyone help... i wanna try out my ipod!

    hi philli!
    also see:
    iPod for Windows: Fast user switching in Windows XP is not supported
    iPod appears in Windows Explorer but does not appear in iTunes
    love, b

  • How to create Labview User Interface with buttons?

    Hello,
    I try to create a user interface, where the TestStand sequencies can be selected one by one not only Test UUT, Single run and run Mainsequence (about 20 buttons needed).
    I'm playing with the simple UI shipped with TS and can load the sequence file and run automatically a sequence (Main or another).
    How can I create and assign buttons to all sequence files in my TS project?
    Any help would be appreciated.
    Thanks. (TS 4.0, LV 8.0)

    I've modified my main VI with the below steps.
    I still don't know how to create and assign front panel buttons to the user interface.
    Anybody could explain to me how do I need to modify the attached part of my main vi and how to assign buttons.
    Thanks.
    Attachments:
    InteractiveArgs_2.png ‏12 KB

  • How to create a date object with a specific time?

    How can I create a date with today's date but with a specific time, say: 20:00:00?
    Thanks in advance.

    Don't forget about those pesky milliseconds!I'd have gotten away with it too.. if it hadn't been
    for that pesky BigDaddyLoveHandles.I'm in top form today. On the drive in to work I managed to
    push two scooter riders off the road and gave the finger to
    a Prius owner.

  • Create a user programmatically  with OracleMembershipProvider

    Hi,
    I looked everywhere in the Oracle doc and in forums and there is no example how to do what's done above with the microsoft provider.
    MembershipCreateStatus status;
    string passwordQuestion = "";
    string passwordAnswer = "";
    MembershipUser newUser = Membership.CreateUser(UsernameTextbox.Text, PasswordTextbox.Text,
    EmailTextbox.Text, passwordQuestion,
    passwordAnswer, true, out status);
    I've tried :
    OracleMembershipProvider membershipProvider = new OracleMembershipProvider();
    MembershipUser myUser = membershipProvider.CreateUser("JoeBlo", "asdfgh*", "[email protected]", "aaa", "bbb", true, key, out status);
    But I got a System.NullReferenceException and I don't know why.
    Can Someone help me.
    Thanks
    Edited by: 786272 on 2010-08-04 14:02

    Please refer to the doc to provide valid connection string in your machine.config or
    web.config. By default the connection string is a blank in machine.config.
    For "provider model", while the default provider is specified you may use
    Membership class to create a user. Membership will call CreateUser method (and others)
    for you that have been implemented by the provider.
    Membership.CreateUser(...)

  • Fail to create a VD Collection with error "The Virtual desktop template does not meet the provisioning requirements."

    I get the following error when I try to create a Virtual desktop
    collection;
    "The Virtual desktop template does not meet the provisioning requirements."
     although I'm specifing a sysprep'd VM installed WS2012 for a virtual desktop template.
    Is there any way to resolve?
    Or, is there any couses of this message?
    thanks.

    I realize this is an old thread.  I'll post and see if I get a response.  If not, I'll create a new thread.  My question is how does Microsoft suggest SPLA partners create VDI pools since they cannot license Windows 7 or 8 via SPLA?  Why
    would you restrict the provisioning to only the desktop operating systems that you won't allow partners to license for deployment?
    Are there any plans to change this to include 2008 R2 or WS2012 as the base OS for a VD template?
    Rob

  • How to create a custom listview with a specific listview item style?

    Hi everybody, I am trying to implement a custom image gallery. It has a very distinct design though, It supports drag and drop reordering. Each item has a button on the left and a thumbnail. The drag and drop should happen only when we drag the thumbnail
    and drop on the + buttons. I tried a lot of ways but none of them seem to work properly. The design of the list view is as the image below. 
    the first item in the list view looks like this. a button and a thumbnail and the last item looks the same but instead of a thumbnail it has an icon. When the add button is clicked a open file dialog appears and we can insert a thumbnail when the add button
    which is on the left and right of the thumbnail is clicked. When the add button at the end is clicked it adds a thumbnail at the end. How do i implement something like this ? Any help is much appreciated. 
    This is the code that i have for the list view item container.
    <Style TargetType="ListViewItem" x:Key="ContainerStyle" >
    <Setter Property="KeyboardNavigation.IsTabStop" Value="False"/>
    <Setter Property="Template">
    <Setter.Value>
    <ControlTemplate TargetType="{x:Type ListViewItem}">
    <StackPanel Orientation="Horizontal">
    <Button x:Name="AddButton"
    Style="{StaticResource SeparatorButtonStyle}"
    Tag="{TemplateBinding Tag}" AllowDrop="True"
    HorizontalAlignment="Left"
    Click="AddBtn_Clicked" VerticalAlignment="Center" Margin="10,0,10,0"/>
    <Border x:Name="Bd" BorderBrush="Transparent" BorderThickness="5" Background="{TemplateBinding Background}" Margin="10,10,10,15" SnapsToDevicePixels="true">
    <ContentPresenter HorizontalAlignment="{TemplateBinding HorizontalContentAlignment}" SnapsToDevicePixels="{TemplateBinding SnapsToDevicePixels}" VerticalAlignment="{TemplateBinding VerticalContentAlignment}" />
    </Border>
    </StackPanel>
    <ControlTemplate.Triggers>
    <Trigger Property="IsSelected" Value="true">
    <Setter Property="Background" TargetName="Bd" Value="#098ae4" />
    </Trigger>
    <Trigger Property="IsEnabled" Value="false">
    <Setter Property="Background" TargetName="Bd" Value="#098ae4" />
    </Trigger>
    </ControlTemplate.Triggers>
    </ControlTemplate>
    </Setter.Value>
    </Setter>
    <Setter Property="IsSelected" Value="False" />
    </Style>
    The datatemplate looks like this..
    <DataTemplate DataType="{x:Type local:ThumbData}">
    <Border BorderThickness="3,3,3,3" x:Name="thumbnailborder" PreviewMouseMove="MouseOverImage" MouseLeave="thumbnailborder_MouseLeave_1" AllowDrop="True" Tag="{Binding ThumbNumber}" DataContext="{Binding}" Width="150" PreviewMouseDown="Page_PreviewMouseDown" PreviewStylusDown="Page_PreviewStylusDown">
    <StackPanel x:Name="border" Background="LightGray">
    <Border>
    <Grid>
    <Border x:Name="transpBk" Height="{Binding ActualHeight, ElementName=thumbImage}" Width="{Binding ActualWidth, ElementName=thumbImage}" VerticalAlignment="Center" HorizontalAlignment="Center" />
    <Image x:Name="thumbImage" Source="{Binding ImageSource}" VerticalAlignment="Center" HorizontalAlignment="Center" Stretch="Uniform" Width="150" Height="100" />
    </Grid>
    </Border>
    <Border Width="150" Height="20" x:Name="ThumbnailNumberPanel">
    <Border Background="{Binding PColor}" Opacity="0.8" Width="150" HorizontalAlignment="Center" Height="20">
    <TextBlock Text="{Binding ThumbNumber}" TextWrapping="NoWrap" TextTrimming="WordEllipsis" VerticalAlignment="Center"
    HorizontalAlignment="Center" FontFamily="Segoe UI" Foreground="White" FontSize="11" TextAlignment="Center"
    Width="150" Margin="0" PreviewMouseDown="Page_PreviewMouseDown" PreviewStylusDown="Page_PreviewStylusDown"/>
    </Border>
    </Border>
    </StackPanel>
    </Border>
    </DataTemplate>
    Thanks and Regards, JohnnyWalker.

    Hello Johnny,
    Can you describe what do you mean by say this:
    "we can insert a thumbnail and dropped on to the add button which is on the left and right of the thumbnail"
    And also could you describe in which part you have problem?
    If you don't know how to add a image to your listviewitem, please try check VisualTreeHelper Class, use it to the specific element you need and then add the element, like a image to it.
    See a code sample about it:http://rachel53461.wordpress.com/2011/10/09/navigating-wpfs-visual-tree/
    And check for details from MSDN:http://msdn.microsoft.com/en-us/library/system.windows.media.visualtreehelper(v=vs.110).aspx
    Best regards,
    Barry
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.
    Hi Barry, Sorry that was a typo. What i meant to say was we can insert a new thumbnail when the + button which are on either side of the thumbnail is clicked.
    There are two problems that i am facing.
    How do i do drag and drop by dropping on to the + buttons? Drag and drop should not work when one thumbnail is dropped on to the other. Multiple thumbnails can be selected and dragged and dropped to reorder. The + buttons should not be dragged nor
    selected.
     Dragging the last "add thumbnail" should not be possible. It has to be there always at the end. And user should not be able to select, reorder or delete it.
    I have a class which holds the thumbnail and i am setting the observable collection as the item source of the list view. i do not have any problem in showing the thumbnails.
    Thanks and Regards, JohnnyWalker.

  • Need an script to create some user account with increasing passwords

    hi friends
    i'm not expert in scripting.
    manager gave me a list of about 50 users which i must create in my windows server 2008 R2 local users & groups snap-in (Lusrmgr.msc).
    suppose i have this 5 users :
      1-albert    2-Brian   3-calvin  4-carl   5-john
    i need an script (maybe for /L ),so that it reads this 5 users from a text file or .csv file & create them & their password be so:
    albert's password be abc1
    Brian's password be abc2
    calvin's password be abc3 & so on.
    i mean their password be abc ending with increasing number which increases one unit
    thanks in advanced

    There should be some automatic user account generating scripts in the
    repository.
    You can request a script here:
    http://gallery.technet.microsoft.com/scriptcenter/site/requests
    This forum is for scripting questions, not script requests.
    -- Bill Stewart [Bill_Stewart]
    hi Bill
    i wasn't familiar with scriptcenter
    thanks for advice
    regards

  • Want to create Graphic User Interface with Adobe CC but which package is best to use?

    I have a CC subscription and (instead of finding yet another package to use) figured there should be something I can use to create the icons needed.  Would appreciate being pointed in the right direction regarding which software within the CC suite I could use.
    I've attached some examples of the GUI that I need to create/edit.  The previous creator (who no longer works with business) used SolidWorks.

    Thanx Mylenium.
    Yeah, the SW is very . . . clunky.
    Have looked started looking at using Photoshop while waiting for Illustrator to download,
    I will admit I am loving learning how to use my CC Suite, just a bit of a struggle sometimes figuring out which is the better software to use for the different things I want to create.
    Erica

  • Problem with installing new software !!!!!!!

    Hello!!
    I got a message that there is new version of ipad software..
    I've wanted to update, and then my problems started.
    First it couldn't install new version, then it said I have to restore software, and now it can not restore the software on my ipad.
    I connect ipad with itunes, it say: resotring ipad firmware... I see on my ipad line around 70% and that is all.
    after one hour it is still 70% restored. I can not do anything.
    I can not turn on ipad (I can only connect with itunes), but it won't restore a software.
    should I leave so, maybe after 8 hours will come to end. or..???
    thanks in advance.

    Try placing the iPad in Recovery mode and then restorinf via iTunes.
    Next would bne to try DFU mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings

  • Since the installation of Firefox 8, I cannot download a specific file type from email. I use this for work and MUST be able to open these files with a specific software. When FF opens the file, it changes the extension and it will not open. Help!!!

    I use the Microsoft Outlook Web App for work email. I receive files with a .RXML extension. This has always worked just fine until the latest version of Firefox came out (I was using FF 7 until this weekend). Now FF changes the extension to .ashx when I open the file and I cannot download it into my software. If I go to the company internet site and download directly from there, it does the same thing. But I can open these files just fine from IE. I REALLY don't want to have to go back to IE.

    I opened one of the PDF files in notepad and these are the first couple lines:
    瀖ᕁމጿ␠씴豈䧉筩롈ꓳ劏ꎯ僪뚢頟뻏즏谀㿃夑퀉꟠鲲쮂⫉笿褡밤籞冁탁ӓ轸뿐笼ⵆ횰䄌ඁ淥ة寨闤⬅鳦팥링빨嬄敎უ婏㣴ً鮓ࣿꢚ㑀녲莒඼ိȆ䕇纍쉉籶뺝갞伐쮠᥏﯒넉釖ȓ겴☧ ἣ秵駻�䣞띰㖔流羀籔朼敨ꢉ糶당⬤俉膇䄐惡�ಹꛖ鍡恡ⱶᶜ�堷﹑ﱌ僿걄뎔æ䋷귪⛢⫐䅪䉙὿烶ꖆ႟ᗔ瘞狻틫儩六잶覱낵듘盋崾�ᦜ㺆௹뻹燴ឋ騙쬄ꏿ뽒煹�钼뇲腎稦ꃲ㈃沒ꔈ뺐뛽첑䘶畱䍣紻 ⁜哠鳾

  • Report to show number of clients with/without specific software with %

    I'm creating a report that shows 4 columns, AD Site, Visio installed, Visio not installed, % Installed. I can get all column right except 'Visio not installed':
    IF object_id('tempdb..#tmp') is not null Drop table #tmp
    select vrs.AD_Site_Name0, 
           CASE WHEN arp.DisplayName0 like '%Visio%'
                THEN 1
                else 0
           END as Visio,
           CASE WHEN arp.DisplayName0 not like '%Visio%'
    THEN 1
    else 0
    END as NoVisio
    into #Tmp
    from v_R_System vrs
    inner join v_GS_SYSTEM_ENCLOSURE enc on enc.ResourceID = vrs.ResourceID
    where 
     enc.ChassisTypes0 in ('8', '9', '10', '14')
    select  AD_Site_Name0 AS 'AD Site'
               ,sum(Visio) as [Visio Installed]
                ,sum(NoVisio) as [Visio not Installed]
        ,(sum(Visio)*100 / (sum(Visio) + sum(NoVisio)) ) AS '%'
    from #Tmp
    group by AD_Site_Name0
    Any ideas what went wrong? Or is there any other ways to get the result I want? 
    Many thanks. 

    Awesome! This is exactly what I'm looking for. Thank you Sherry!
    Nick, we have the same result. I would just exclude every irrelevant entries
    Select DISTINCT DisplayName0 FROM v_Add_Remove_Programs WHERE DisplayName0 Like 'Microsoft Office Visio%'
    and DisplayName0 not like '%Visio Language Pack%' and DisplayName0 not like '%Visio Viewer%'
    etc...

  • Create table space command with no specification of data file path.

    I am using following command for creating table space in oracle 11g
    CREATE TABLESPACE testTbSpace DATAFILE 'dataFileName.dbf' SIZE 50M REUSE AUTOEXTEND ON NEXT 1M MAXSIZE 32767M NOLOGGING"
    But it is creating datafile dataFileName.dbf at disk at following path
    echo $ORACLE_HOME/dbs
    I dont want to create datafile at this path and also dont want to specify data file path in 'create table space' command.
    Is there is any parameter,which i can set and above command start to create dataFileName.dbf at that path
    Edited by: user8680179 on May 15, 2012 1:54 AM

    user8680179 wrote:
    i issued following commands from 'SYS' user;
    1. show parameter db_create_file_dest;
    NAME TYPE VALUE
    db_create_file_dest string
    2.alter system set db_create_file_dest='dataFilePath';
    System altered.
    3.show parameter db_create_file_dest;
    NAME TYPE VALUE
    db_create_file_dest string dataFilePath
    4.CREATE TABLESPACE testTbSpace2 DATAFILE 'test1.dbf' SIZE 50M REUSE AUTOEXTEND ON NEXT 1M MAXSIZE 32767M NOLOGGING;
    Tablespace created.
    But still my test1.dbf file is creating at old path($ORACLE_HOME/dbs)Is datafilepath a real location? I don't think so! Give a proper path like "d:\oracle\" and retry.
    Aman....

Maybe you are looking for

  • L305-s5933 dvd drive wont open

    hi. Well I've been experiencing problems with the dvd drive in my laptop last week, I dont know when this problem started because I don't use the dvd drive very often but the problem is that the dvd drive won't open after the computer has been on for

  • Incoming Payments - Default account in Payment Means tab Bank Transfer

    Hi all, I want the G/L Account in Payment Means (Incoming payments) - tab Bank Transfer to be set by default. For OUTGOING payments this is set via G/L accounts determination but there is no such option for INCOMING payments (?). I tried by creating

  • Available balance showing zero balance under utililzation for BED IN J2IUN

    HI EXPERTS, While doing monthly utilization in  J2IUN  Duty amount is showing 1200  under duties, but available balance is showing  as zero under utilization for BED. But in the GL + balance is available. Pelase help me out Thanks in advance KISHORE

  • Bursting XML Data

    Is it possible to burst just the XML data to a shared directory on the NAS. We are using standalone BI Publisher 10.1.3.2. I have a requirement to reuse the XML data used for a BI Publisher report for a different system. Essentially the second system

  • Develop option states file access denied

    When trying to edit an image in Lightroom,moving from library to develop it tells me "file access denied." I need help please