RE: [mssms] Louisville Systems Management User Group first meeting!

2015-02-24 Thread Ron Crumbaker
Awesome! I will be there!! Should be exciting! -Original Message- From: "Daniel Ratliff" Sent: ‎2/‎24/‎2015 11:00 AM To: "mssms@lists.myitforum.com" ; "ugmana...@myitforum.com" Subject: [mssms] Louisville Systems Management User Group first meeting! Our first meeting is on the books!

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Johns, Damon (DoJ)
Hi Guys, I’m using this process: http://blogs.technet.com/b/jchalfant/archive/2014/05/13/uninstalling-all-previous-versions-of-java-runtime-environment-using-application-supersedence-in-configuration-manager.aspx works really well. I’ve added a kill process into the uninstall.vbs script so any

Re: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Jason Sandys
?Then use another method like the many listed when you go to the Bing search I posted below or the others that folks have started attaching to this thread. Or actually download the scripts and analyze them to see how Darwin solved the problem and how they can be used to perform the uninstall. Ju

Re: [mssms] Reporting service backup, automated

2015-02-24 Thread Jason Sandys
?The encryption key does not change -- that would make it impossible to read the data. So just add it to your maintenance plan. As for the config files, same story, unless you change them, they won't change. J From: listsad...@lists.myitforum.com on behalf o

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Timothy Ransom
WMIC removed multiple versions but with some leftovers in file system and registry. First uninstall string that I tested, 1.6.17, performed a clean uninstall without any remnants. From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Nash Pherson Sent: Tuesd

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Nash Pherson
It’s not a problem with WMIC, it’s a problem with the Win32_Product class. Whether you access it with WMIC or PowerShell, you will see the same thing. From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Timothy Ransom Sent: Tuesday, February 24, 2015 17:59

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Timothy Ransom
OK, I am now uncomfortable with wmic. I ran command below to retrieve the uninstall string. Get-WmiObject -Class win32_product | where { $_.Name -like "*Java*"} Think I will do this for each java version in my environment and create a task sequence. Thanks. From: listsad...@lists.myitforum.

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Murray, Mike
We use the PowerShell App Deployment Toolkit. We first uninstall any old versions of JRE, then install the latest. Mike From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Erik Wold Sent: Tuesday, February 24, 2015 2:09 PM To: mssms@lists.myitforum.com Subj

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Erik Wold
I use a task sequence that first kills any open browsers (send this out after working hours and with a message to users when the TS starts), uninstalls old java versions then install the latest version. Works Ok for me. Mvh Erik From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myit

RE: [mssms] Reporting service backup, automated

2015-02-24 Thread Roland Janus
Well, it's more like a no brainer why. The job backs up all user DB's. So I have nothing to worry about and I'll catch the changes without any effort, if new reports are added. On which circumstances to the mentioned files change? If those and the encryption key wouldn't change once configure

[mssms] kb2956102 -32 bit stuck downloading

2015-02-24 Thread Taxter, Latisha
Have you guys seen where this office 2013 update is stuck at downloading. I am having quite a few users reporting this update is stuck at downloading 0% completed. Is there is a fix for it? Thanks. Latisha Taxter Server Administrator III Kootenai Health 2003 Kootenai Health Way Coeur D'Alene,

Re: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Ryan
It doesn't replace the uninstall method though. On Tue, Feb 24, 2015 at 3:23 PM, Jason Sandys wrote: > It talks about a replacement for Win32_product which is the root of the > problem I pointed out. > > > > J > > > > *From:* listsad...@lists.myitforum.com [mailto: > listsad...@lists.myitforum.

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Jason Sandys
It talks about a replacement for Win32_product which is the root of the problem I pointed out. J From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Ryan Sent: Tuesday, February 24, 2015 2:57 PM To: mssms@lists.myitforum.com Subject: Re: [mssms] RE: java un

Re: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Ryan
As an alternative you can use Powershell to do this with the SMS namespace: Get-wmiobject -namespace 'root\cimv2\sms' -Query "select * from SMS_InstalledSoftware where ProductName Like 'Java _ Update%'" | Foreach-object { msiexec /x $_.SoftwareCode /qn /norestart } On Tue, Feb 24, 2015 at 2:57 P

RE: [mssms] Application Model / Targeting

2015-02-24 Thread Robert Spinelli
Good info, thanks for the detailed response. From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Ryan Sent: Tuesday, February 24, 2015 1:12 PM To: mssms@lists.myitforum.com Subject: Re: [mssms] Application Model / Targeting You would have 2000 apps and

Re: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Ryan
The second link doesn't say anything about uninstalling... On Tue, Feb 24, 2015 at 2:52 PM, Jason Sandys wrote: > See the second link. CSI Windows provides a better alternative. > > > > Or how about Secunia? They’ll do it also. Or collect all of the possible > uninstall strings and put them int

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Jason Sandys
See the second link. CSI Windows provides a better alternative. Or how about Secunia? They'll do it also. Or collect all of the possible uninstall strings and put them into a script. There are many options. I think a few folks have even posted scripts to this list that may be found online with

RE: [mssms] RE: java uninstall with wmic

2015-02-24 Thread Mike Vrabel
Then recommend another option DOH!!! From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Jason Sandys Sent: Tuesday, February 24, 2015 1:19 PM To: mssms@lists.myitforum.com Subject: [mssms] RE: java uninstall with wmic Don't use Win32_Product, it has

[mssms] RE: java uninstall with wmic

2015-02-24 Thread Jason Sandys
Don't use Win32_Product, it has terrible side effects: - http://myitforum.com/cs2/blogs/gramsey/archive/2011/01/25/win32-product-is-evil.aspx - http://csi-windows.com/toolkit/win32product-replacement J From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.c

Re: [mssms] java uninstall with wmic

2015-02-24 Thread Ryan
That will uninstall all Java, even the JDK. ConfigMgr to see the patterns of Java names in your environment. I was able to get away with this: Name Like 'Java _ Update%' On Tue, Feb 24, 2015 at 1:42 PM, Timothy Ransom wrote: > Hi, > > > > I finally have ok to upgrade a group of 2k PCs to latest

[mssms] java uninstall with wmic

2015-02-24 Thread Timothy Ransom
Hi, I finally have ok to upgrade a group of 2k PCs to latest Java but many have multiple versions. Has anyone used wmic from ConfigMgr to uninstall Java? No issues using this command locally to remove multiple versions. wmic product where "name like 'Java%'" call uninstall Thanks, Tim

Re: [mssms] Application Model / Targeting

2015-02-24 Thread Ryan
You would have 2000 apps and 2000 deployments. The categories would be named the security group name (or some other identifying feature) and then the script would create the collection with the name Deploy - AppName, and set up a query rule to add a security group. If you want less overhead, it cou

RE: [mssms] Application Model / Targeting

2015-02-24 Thread Michael Mott
Check the 1E Enforcement tool, located here http://www.1e.com/free-tools/ From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Sean Pomeroy Sent: Monday, February 23, 2015 7:37 PM To: mssms@lists.myITforum.com Subject: Re: [mssms] Application Model / Target

RE: [mssms] Application Model / Targeting

2015-02-24 Thread Robert Spinelli
I’m hoping someday is today, that would be helpful. J If you need someone to help you with testing, you can send me all your code.. hah. This seems interesting, can you expand on rules based on the category? So using my example off 2000 apps, you would have 2000 collections / 2000 deploym

RE: [mssms] Application Model / Targeting

2015-02-24 Thread Robert Spinelli
The way we would like to set it up here is that the users would only see the apps they need for their business function. We have 2000 apps or so, If I’m a secretary I should only be able to see the 10 I need and install them from application catalog. Don’t want them to see the 1990 apps they h

[mssms] Louisville Systems Management User Group first meeting!

2015-02-24 Thread Daniel Ratliff
Our first meeting is on the books! http://www.eventbrite.com/e/lousmug-systems-management-user-group-tickets-15719971859 Register now (using the link above), and join us for the first ever Louisville Systems Management User Group meeting! This kick-off event will for everyone to meet, network,

Re: [mssms] Panasonic ToughPad FZ G1 OSD

2015-02-24 Thread Sean Pomeroy
You either need to advertise to All Systems. Or create a collection with the objects that have that mac and advertise to that collection. Or with some scripting magic, unplug device from the network and force a full hardware inventory while on wireless. http://blogs.technet.com/b/askpfeplat/archi

[mssms] Panasonic ToughPad FZ G1 OSD

2015-02-24 Thread Rickym61
Hi All, SCCM 2007 SP2 R2 By any slim chance does anyone here image Panasonic ToughPads, mainly FZ G1 MK1 or MK2 and builds them via the docking station? (as no NIC port on the model we have) or any other tablet devices with no LAN? If yes, any tricks to getting to build (were on SCCM 2007 SP2 R

[MDT-OSD] Panasonic ToughPad FZ G1 OSD

2015-02-24 Thread Rickym61
Hi All, SCCM 2007 SP2 R2 By any slim chance does anyone here image Panasonic ToughPads, mainly FZ G1 MK1 or MK2 and builds them via the docking station? (as no NIC port on the model we have) or any other tablet devices with no LAN? If yes, any tricks to getting to build (were on SCCM 2007 SP2 R

RE: [mssms] Reporting service backup, automated

2015-02-24 Thread Jason Sandys
Don't have a specific method for you except to ask why would want to do this regularly? The reporting services DB stores reporting services specific data like reports and subscriptions. Unless you are changing these regularly, there's no need to back up the DB. Once after you make changes is suf

Re: [mssms] run AppV 5.0 SP3 sequenced app on Windows 7.1 SP1 (x86) on Windows 8.1 (x64)

2015-02-24 Thread sms sccm
sorry, title is some kind of misleading - application has been sequenced on windows 7.1 (x86) - deployed this app-v with config mgr 2012 on windows 8.1 (x64) From: sms sccm Sent: Tuesday, February 24, 2015 3:32 PM To: mssms@lists.myitforum.com Subject: [mssms] run AppV 5.0 SP3 sequenced app

Re: [mssms] Application Model / Targeting

2015-02-24 Thread Ryan
If you are targeting the machine as opposed to the user I wouldn't target all your apps to the same collection. For a client, I'm using a script to look at the category of the application. If the category of the app is defined in a CSV it creates a collection, sets the refresh schedule, moves it t

[mssms] run AppV 5.0 SP3 sequenced app on Windows 7.1 SP1 (x86) on Windows 8.1 (x64)

2015-02-24 Thread sms sccm
this should generally work or not? I’m asking because I got this error: it looks like the sequencer took care of x86: (maybe it’s because of .NET Framework but I did install 4.5.2 on both Win7 + Win8) thank you

[mssms] RE: vmware build

2015-02-24 Thread Nicolas . Grele
Return Receipt Your [mssms] RE: vmware build document:

RE: [mssms] RE: System Enclosure - Chassis Types for Tablets

2015-02-24 Thread Andreas Hammarskjöld
Yeah, think we used that one, ran a tool in Post deploy I think and fetched the reg key by mof. Also think in conjunction with the ever un documented: HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Windows\Tablet PC registry key. //A From: listsad...@lists.myitforum.com [mailto:listsad...@l

RE: [mssms] RE: System Enclosure - Chassis Types for Tablets

2015-02-24 Thread Michael Niehaus
The IsTouchEnabled.exe (which is part of UDI, included with MDT) uses the GetSystemMetrics API to ask Windows if there is a digitizer present (SM_DIGITIZER flag). That works great in the old or new operating system, but not in Windows PE. Thanks, -Michael From: listsad...@lists.myitforum.com

RE: [mssms] RE: System Enclosure - Chassis Types for Tablets

2015-02-24 Thread Andreas Hammarskjöld
Nah, if memory serves me right it was a windows reg key, but if that was collected and detected as a part of the build using Niehaus .exe method I don't remember. //A From: listsad...@lists.myitforum.com [mailto:listsad...@lists.myitforum.com] On Behalf Of Hedges, Dustin Sent: den 23 februari

[mssms] Reporting service backup, automated

2015-02-24 Thread Roland Janus
Anyone has that automated? I have the DB backup running (from ola.hallengren.com), but then there is the encryption key and the files. Am I right, as long as the reporting services isn't reconfigured, backing up the encryption key once is sufficient? But those still need to be done regu