Tuesday, January 25, 2022

SubTasks

SubTasks

***ATTENTION SHAREPOINT DEVELOPERS***

Why does SharePoint not allow you to create a subtask on a filtered list?  I am trying to create a subtask off my Upcoming view.  I receive the error stating "We can't modify hierarchy on a view that is sorted/filtered/grouped.  Switch views and give it another try."

The only filter I have on this view is that my "Completed" tasks are not visible.  Based on the dialog, we are only able to create subtasks from the "All Tasks" view as that is the only unadulterated view.

This is counter productive as I am often not viewing "All Tasks" - and if I am, it is to find details on a completed task, not to add a subtask.  Further, I am unable to sort the "Completed" to the bottom of this view to add a subtask as "sorting" is a restriction of the error message.

PLEASE CORRECT THIS.  SharePoint is alienating a key user group if we cannot easily create subtasks in a working view.

(Note:  The required fields solution is not the issue here.  The issue is specifically restrictions associated with sorting and filtering.)

Created bookmark doesn't work

Hi,

I need to jump in the same report from placeholder to specific page.

I created the placeholder inside of TextBox with value =7

Then on placeholder Property selected Action.

Click on the Bookmark radio button and added the field I want to jump. When the report is generated link is doesn't work.

Could you please advise?

Authenticated and restricted (read-only) access to Azure Storage blobs

Hello, can anyone share if there is any prebuilt tool for handling (download/upload) Azure Storage blobs, based on Shared Access Signature? All that I find (CloudBerry, Celebrata, Azure Explorer etc.) are based on storage access keys.

Note: Actually I found that Azure Storage Explorer covers this aspect. But it doesn't satisfy my case. I will correct here my initial request: the requirement is to have an authenticated and restricted (read-only) access to my blobs.


Marius




Reply:

Do take a look here: http://blog.cloudportam.com/cloud-portam-update-blob-receiver-a-free-utility-to-receive-files-in-your-azure-blob-storage-without-sharing-account-key/. As part of Cloud Portam tool, we have released this free utility to receive files directly in your Azure Storage account. However it only includes upload functionality and not download one. For downloads, you could simply create a SAS URL on your blob and distribute that.

Hope this helps.


------------------------------------
Reply:
Thanks a lot for the suggestion, Gaurav. However it is not solving my case - the most important usage for me is the download. Simply create a SAS URL doesn't work as is: my client needs to be autonomous and not to create SAS URLs every other day. It should be something straightforward like a FTP connection: authenticated and with possibility of restriction (ex. read-only).

Marius


------------------------------------
Reply:

Hi,

Please have a look at this site page: http://storagetools.azurewebsites.net/, it shows us a list of tools for working directly with Windows Azure Storage Blobs, Tables and Queues. I couldn't find a tool, if all these tools don't meet your requirement, please try to create a new customer voice at azure feedback forum: http://feedback.azure.com/forums/217298-storage

Best Regards,

Jambor


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.


------------------------------------
Reply:

Hi Marius 

Did you found the solution for your requirement , we are also looking for the same case .


Surendra Thota


------------------------------------

Mr

Hy Microsoft ,please i need an activation code to activate my htc windows 8s phone,dis is my imei number,353760051528349

Type List sendmail not working (when task sending mail is working)

Hello,

I've created a Type List with a simple 2013 workflow : if Value equals 'W', send an Email.
I don't receive the email...

If I create a Type Task with a simple 2013 workflow which sends an email, it's working fine, the mail is sent.

I really don't understand what is the difference between the 2 sending mail ?

Anyone can help me ?


Reply:
Hi Quentin- need more details on the workflow that isn't working. Could you provide the step(s) and what they're doing/where the value of W is?

cameron rautmann


------------------------------------
Reply:

Hi Cameron,

of course.

Stage:Stage 1

if Test:Audit_Type equals W
    Email quentin@gmail.com
Transition to stage
    Go to End of Workflow

As you see, it's a simple one

On the web site, I only have 2 colones (Audit_Type and NameAudit). I create a new item with Audit_type value to W (it's a dropdown list)


------------------------------------

Azure Infrastructure Opportunities

Hello mates, 

I have been working in IT as generalist when i started worked with (Cisco - Linux - Microsoft) but for last 3-4 years its almost microsoft BIG Infrastructure 3rd level operations , BIG Infrastructure development and maintenance like ( EXCHANGE, SHAREPOINT, SQL, SCOM, orchestrator, IIS, load balancers,  web and application hosting, clusters  FTP and much more even out of MS and bla bla now I planning to be expert in a product or area in MS its AZURE.

in market level up coming 2-3 years what you think honestly is it good area to be expert in azure  i mean from Opportunities and jobs perspective ?or  is there any chance of MS-AZURE to get out of market? or  it will be best product to work with?

thanks in advance,


Reply:

I never regretted putting al my focus on Azure, I get daily requests from headhunters these days
I'm also convinced that MSFT will keep rising and beating the competition (acutally already happening),
the sooner you can start becoming expert the more advantage that it will give you in the future.

however ... Azure is a BEAST, you must be fully commited and motivated to keep on studying as it changes with very fast pace. You must love it or you will hate it ...


Cheers Christophe - Kindly click Mark as Answer on the post that helps you - www.cloudcrusader.com


------------------------------------
Reply:

Thanks a lot for information you have given me more extra energy.

I will do my best


------------------------------------

Web cam will not work and camera also video chat for my dell lattidue E7250

This is the error message for my  your webcam or Camera app in Windows 10 won't open and you get an error message saying that we can't find or can't start your camera (including error codes 0xA00F4244 or 0x200F4244) and for facebook it just says cant find web cam

Reply:

I shall suggest you to uninstall, reinstall and update Webcam along with it's application software from the support site of Dell.

Ref:

Windows can't find or start the camera


S.Sengupta, Windows Insider MVP



------------------------------------

Script to export monitor serial numbers on multiple computers with multiple monitors.

I am really new to Powershell and have found a script online that works perfectly for my needs except for two things. First, I would like the computers that are unresponsive in the array to show up in the exported .CSV as offline instead of being sent to the output log.  Secondly, I would like to create a variable that pulls a second monitor's model and serial number and then have them outputted to the $props as I designated.  Any help would be amazing!

 
$ArrComputers = Get-Content -Path "C:\ComputerNames.txt"  $OutputLog = ".\output.log"   $NotRespondingLog = ".\notresponding.log"   $ErrorActionPreference = "Stop"   Clear-Host    $data = ForEach ($Computer in $ArrComputers) {   try {   $computerSystem = get-wmiobject Win32_ComputerSystem -Computer $Computer   $computerBIOS = get-wmiobject Win32_BIOS -Computer $Computer   $MonitorInfo = gwmi WmiMonitorID -Namespace root\wmi -computername $computer |   Select -last 1 @{n="Model"; e={[System.Text.Encoding]::ASCII.GetString($_.UserFriendlyName -ne 00)}},   @{n="Serial Number";e={[System.Text.Encoding]::ASCII.GetString($_.SerialNumberID -ne 00)}}    } catch {   $Computer | Out-File -FilePath $NotRespondingLog -Append -Encoding UTF8   continue   }     $Header = "System Information for: {0}" -f $computerSystem.Name     write-host $Header -BackgroundColor DarkCyan   $Header | Out-File -FilePath $OutputLog -Append -Encoding UTF8     $props = [ordered]@{   'Name' = $computerSystem.Name   'Model' = $computerSystem.Model   'Serial Number' = $computerBIOS.SerialNumber   'Monitor Model' = $MonitorInfo.Model   'Monitor Serial' = $MonitorInfo."Serial Number"   '2nd Monitor Model' =   '2nd Monitor Serial'=   }   New-Object -Type PSCustomObject -Property $props  }    $data | Export-Csv -Path 'C:\test.csv' -NoType

  • Changed type Bill_Stewart Friday, April 28, 2017 5:27 PM
  • Moved by Bill_Stewart Friday, April 28, 2017 5:27 PM This is not "fix/debug/rewrite my script for me" forum

Reply:

Since you didn't write the script, we would recommend asking the original author to redesign the script for you (assuming he/she is willing). Please read the following post from the top of this forum:

This forum is for scripting questions rather than script requests


-- Bill Stewart [Bill_Stewart]


------------------------------------
Reply:

Create the default hash first then output it last.  Add the computername ad staus as "Offline" and let the successful systems change it to "Online"along with the rest of the bits.


\_(ツ)_/


------------------------------------
Reply:
Thanks Bill.  I didn't read that post but have now.  My bad.

------------------------------------
Reply:

I would also note that that script doesn't work anyway.  Look in the gallery for better scripts.


\_(ツ)_/


------------------------------------
Reply:
Thanks JRV!  I will look in to it.

------------------------------------
Reply:

Here is what you can do if you can learn PowerShell:

$properties=@(  	@{n='ComputerName';e={$_.PsComputerName}},
@{n='Status';e={'Online'}}, @{n='SerialNumber';e={[System.Text.Encoding]::ASCII.GetString($_.SerialNumberID)}}, @{n='ManufacturerName'; e={ [System.Text.Encoding]::ASCII.GetString($_.ManufacturerName)}}, @{n='ProductCodeID';e={ [System.Text.Encoding]::ASCII.GetString($_.ProductCodeID)}}, @{n='UserFriendlyName';e={[System.Text.Encoding]::ASCII.GetString($_.UserFriendlyName)}} ) $computers = Get-AdComputer -Filter *| Select -ExcludeProperty Name Get-CimInstance WmiMonitorID -Namespace root\wmi -computer $computers -ea 0 -ev failed | Select $properties # parse failed to get failing computers $failed[0].OriginInfo.PSComputerName $failed[0].Exception $failed[0] | select *


\_(ツ)_/


  • Edited by jrv Wednesday, February 22, 2017 10:09 PM

------------------------------------

show full path in network address bar

I would like the windows 10 operating system to show the full path in the address bar. I have found the setting to do this but it seems that it does not work. to find the setting go to - File explorer, View tab, far right side click options, select Change folder and search options in the drop down menu, select the view tab in the new window, click on the setting display the full path in the title bar.

This does not work. I have 5 windows 10 pro upgraded machines that this setting is not working on. All of them still show the Mapped drive letter instead of the full path. Does anyone know what is wrong.

Thanks

Joel


Reply:

On my machine I set display full path sometime ago. Works. But I have turned it off, and it is still on! So hmm that is odd to me.

Has been a couple of builds since then (Insider build) and rebooted but still show full path in title bar, restored default still show full path.

Add to the Feedback Hub.


------------------------------------
Reply:

I just checked a windows 7 pro machine that I just completely re-installed and updated. It is doing the same thing as my windows 10 pro machine. I checked the setting to display the full path and then rebooted and it is still showing the mapped drive.  Is there some place in the registry where it shows the info on mapped drives.

Thanks

Joel


------------------------------------
Reply:

Ok realised I was looking at the address bar in error! doh my bad!

So looked some more, mapping to a Windows 10 PC does show the path. A map to my VMware-host does not.

So what is the mapped drive you are mapping too?


------------------------------------

Delay Invite from Lync 2013 Front end to the Skype for Business Client

Hi All,

I would like to know in case we can delay the Invite sent to the SFB client from a Lync 2013 server. Is there a timer delay we can add to the following call flow:

Cisco -- Lync Mediation pool -- Lync Front End -- SFB client

I want to add a 2 second delay to a SIP INVITE received from Cisco's end. For example, if the INIVITE originated at 12:00:00:000, it should reach the SFB client at 12:00:02:000

It is a requirement for my deployment.

Himank Pande

Deploy Printer form Print Management for Non-Join Domain

Dears, I need to deploy printer from Print Management for PCs non-join domain connected on my network, 

what is the best solution to deploy it

Thanks


Reply:

Is the print server joined to a domain?  Do you have more than one print server?  How many printers are you wishing to deploy?

What process are you using currently to connect the non domain joined systems to the print shares?

How many non domain joined machines are there in the environment?

If you are not prompted for security credentials on the server.  The local policy on the client will work.


Alan Morris formerly with Windows Printing Team


------------------------------------

Service Manager System Monitor - Testers Wanted

After months of development, I proudly present to the community a tool that will allow administrators of high-use environments or administrators trying to lock down an issue direct, real-time visibility into their Service Manager Environment.  If you would like to help work out the final bugs and have a long-lasting helper, please feel free to download the executable from this gallery entry.

https://gallery.technet.microsoft.com/Service-Manager-Monitor-0eb7d2d0


Reply:
Giving this a bump to maintain visibility.  Could use some more testers.

------------------------------------
Reply:

Hi

Sounds great! Just gave it a try but unfortunately got the following error message when starting the exe. Windows Server 2012 R2 with .Net Framework 4.5 is installed. Any suggestions what could be wrong?

Thanks!



------------------------------------
Reply:

Yes, there seems to be a problem with the application's settings file.

Location:

C:\Users\$user$\AppData\Local\SCSMMonitor\SCSMMonitor.config

The XML Config file should resemble this:

<ApplicationSettings>   <WindowSettings Top="22" Left="1939" Width="1183" Height="619" WarningThreshold="2" TransactionThreshold="5" />   <MonitoringSettings>   <MonitorSetting Target="PollingInterval" Value="5" />   <MonitorSetting Target="NetworkRedline" Value="50" />   <MonitorSetting Target="DiskQueue" Value="10" />   </MonitoringSettings>   <Servers>   <ManagementServers Count="1">   <ManagementServer ManagementGroup="yourSCSMgroup" ServerName="SCSM01P.yourdomain.com" />   </ManagementServers>   <MonitoredServers Count="1">   <MonitoredServer ServerName="scsm01p" Domain="yourdomain.com" />   </MonitoredServers>   <DatabaseServers Count="1">   <DatabaseServer Type="CMDB" Server="SCSMCMDB" />   </DatabaseServers>   </Servers>   <Databases />  </ApplicationSettings>

The error is occurring when it is trying to parse the config file.  I assume that it is having trouble with the numbers it in.  If you could post up a copy of your config file, it would be helpful.


------------------------------------
Reply:

My SCSM DB is running on a AlwaysOnAviabilty Group on a SQL Cluster.

So the Tool cannot find my SCSM DB can i fix this somehow?

brgds


------------------------------------
Reply:
That's a good one as the CMDB the tool was developed with was also on a cluster.  Does it give you an error message?  If so, can you share that?

------------------------------------
Reply:

hello, i'm trying to start programm, it sees my SCSM servers, but when i add cmdb server ( this is sql data base server, isn't it?) and press submit button, it says that "Could not connect to CMDB. Please enter server name".

It show number of connection for each server but monitor section in Server Environment shows no load.

My account is part of scsm admin role and have rights on DB on SQL server

Client system is win 8.1 and 2012r2 server

  • Edited by Nikolas Page Wednesday, February 22, 2017 3:12 PM

------------------------------------

How to enable events for service stop / start / pause with the username?

I have Windows 2008 R2 servers on which people are stopping / Starting / Pausing services. Now I am unable to get the name who did it as there is no such event id getting logged in event logs. Hence how to enable those event id to help me with findings who is doing it. Please suggest.

Thanks

Shashi


Shashi


Reply:

Something here might help.

http://windowsitpro.com/systems-management/access-denied-auditing-users-who-might-be-starting-and-stopping-services

 

 (also change thread type from discussion to question)

 



Regards, Dave Patrick ....
Microsoft Certified Professional
Microsoft MVP [Windows Server] Datacenter Management

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



------------------------------------
Reply:

Hi Dave,

Thanks for this link and I already tried this before posting this question but somehow it did not helped me.

Regards,

Shashi


Shashi


------------------------------------

What about 2017 February's Windows Update Patch Tuesday ?

Hi,

Does somebody knows about 2017 February's Windows Update Patch Tuesday, please ?

Best regards.

  • Edited by PCJ_TECH Friday, February 10, 2017 1:07 PM

Reply:

no updates today buuuuuuuddy

I cannot post a link but search for update Tuesday February 2017. MS blog posting reports

"

Our top priority is to provide the best possible experience for customers in maintaining and protecting their systems. This month, we discovered a last minute issue that could impact some customers and was not resolved in time for our planned updates today.

After considering all options, we made the decision to delay this month's updates. We apologize for any inconvenience caused by this change to the existing plan. "


------------------------------------
Reply:
and the link

------------------------------------
Reply:
  • Edited by PCJ_TECH Wednesday, February 22, 2017 11:39 AM

------------------------------------

List of newly added Group Policies in Windows Server 2012 R2 and 2016

Hey Folks,

Is there any documentation contains the list of newly added Group Policies in Windows Server 2012 R2 and 2016 ? couldn't locate anything on the web except the number (169 new set of policies added). I'm quite urgently need a list of policies without digging inside the server and look for each.

Thanks

Manoj K


Reply:

Hello,

There is a high level description of new enhancements in 2012R2 here: https://technet.microsoft.com/en-us/library/dn265973%28v=ws.11%29.aspx?f=255&MSPPError=-2147217396

There also is a good spreadsheet that you can download, that contains the list of GPO settings split by supported Windows versions: https://www.microsoft.com/en-us/download/details.aspx?id=25250

Hope, that this helps.

/Regards


  • Edited by Avendil Wednesday, February 22, 2017 8:52 AM

------------------------------------
Reply:

Hi Avendil,

that spreadsheet seems pretty good ! thanks for sharing.


------------------------------------

WPD Devices: Deny read access user policy

Hi,

i have one query about WPD Devices: Deny read access user policy. i go through your comment and its working fine.  Actual setting is this 

All Removable Storage classes: Deny all access Enabled  
WPD Devices: Deny read access Enabled  
WPD Devices: Deny write access Enabled 

And same setting i want revert back through GPO only. please suggest. 


Sharepoint 2013 - Certain emails stuck in drop folder.

Hi,

If someone could help with this issue that would be great as I'm 21 and nearly all my hair has gone since working on this..

I have currently got 1 sharepoint site, which is enabled for incoming emails which I know works perfectly fine as I see emails come in and out of the drop folder all the time as I send a lot of reports to Sharepoint document libraries.

Now the problem I am having is this:

I have configured a workflow which takes an entry from sharepoint and emails it back into a sharepoint document library elsewhere (On the same sharepoint site). Now the file is being picked up by the workflow quite happily, once it gets picked up and moved by the workflow I receive an email to say it is complete, it also emails back into Sharepoint to a different document library...this is where the problems start.

I receive the email absolutely fine which tells me I can send and receive email through Sharepoint, Ok. The only problem is, I receive the email but the other email that is suppose to go back into a different document library gets stuck in the Drop folder. These are the only ones that are getting stuck in the drop folder and I have tried so many different techniques of which none work.

If someone could please help shed some light on this that would be great, if you need any more detail then please let me know. I have checked through the ULS logs and all seems to be fine in there as there are no entries for email.

Hope you can help me!

-Kyle

***EDIT:***

I have fixed this issue now with the help of this post: http://sharepoint-uk.blogspot.co.uk/2008/03/wss-emailing-itself-x-mailer-windows.html

For 2013 Sharepoint it may be using the Microsoft Sharepoint Foundation 2010 as the X-Mailer. So you will need to edit your wss.vbs file to suit. I have pasted a copy of mine below.

<script language="VBScript">
Sub ISMTPOnArrival_OnArrival(ByVal iMsg, EventStatus )

if iMsg.Fields("urn:schemas:mailheader:x-mailer") = "Microsoft SharePoint Foundation 2010" then
iMsg.Fields.Delete("urn:schemas:mailheader:x-mailer")
iMsg.Fields.Update
end if

iMsg.DataSource.Save
EventStatus = 0
End Sub
</script>

  • Edited by Kyle Moody Tuesday, February 21, 2017 5:23 PM Update.

Could WSUS use a SRV Record in DNS to advertise itself to clients?

I'm curious if WSUS couldn't use a SRV record in DNS to advertise update services to clients.  Similar to How LDAP, Lync, and KMS Activation servers are all identified by Service Locator records in DNS.

Rather than configure the WSUS server with a group policy object, could Windows Update Services be setup with a SRV record instead?  I understand it's not possible now but just wondering if that couldn't be an option in the future.  WSUS seems like a plausible service to use SRV records.


Reply:

Hi,

No way even in the future.The WUA use the GP to make the client find the Update resources.

regadrs,

Clarence


Please remember to click "Mark as Answer" on the post that helps you, and to click "Unmark as Answer" if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.


------------------------------------
Reply:
I wish I could convince Seattle's chaps to help us. we definitely need such feature for WSUS,especially for computers in workgroups, site and domain GPOs work only for domain joined workstations. In the meantime, you could use round robin on your DNS server and subnet based priority to get the wsus IP address matching your PC's IP network. Set several WSUS servers on your network, place them at the wise places, and configure an alias record fro say "wsus". set the GPO to point to wsus. when clients will resolve the IP for the "wsus" server, dns will respond with the IP address in your subnet. this is not the IP to AD DS site assignment, but this is a good start.

------------------------------------

Remove multiple users from a global group

Hello,

How do I remove multiple users from a global security group.

The users will be saved in a txt file and will be removed from group A


Regards, Ajit


Reply:

How do I remove multiple users from a global security group.

... you start with posting the code you already have and explaining for us what problem you have with this code and if you have errors you should post them as well.

Grüße - Best regards

PS:> (79,108,97,102|%{[char]$_})-join''


------------------------------------
Reply:
Get-Content c:\user.txt | Remove-adGroupMember -Identity "Global group name""

Regards, Ajit


------------------------------------
Reply:
Does that work?

Grüße - Best regards

PS:> (79,108,97,102|%{[char]$_})-join''


------------------------------------
Reply:

Hello,

It does not work. Hence I requested help on this forum


Regards, Ajit


------------------------------------
Reply:
Get-Content c:\user.txt | Remove-adGroupMember -Identity "Global group name""

Regards, Ajit

get-content C:\Test.txt | %{Remove-ADGroupMember -Identity "Group A" -Members (get-aduser $_)}

That should do it.

Just to clarify why yours wasn't working, what you're passing off to the "Remove-AdgroupMember" command is an array of strings obtained by your "get-content" command.  Remove-AdGroupMember doesn't really know what to do with those strings, and it isn't going to know how to turn that array into individual ADUser objects.

  • Edited by SYN_ACK_87 Tuesday, February 21, 2017 12:58 PM

------------------------------------
Reply:
... and you don't get errors?

Grüße - Best regards

PS:> (79,108,97,102|%{[char]$_})-join''


------------------------------------
Reply:

Hello

Thank you . :-)

The error message is 

PS C:\> get-content C:\user.txt | %{Remove-ADGroupMember -Identity "group name" -Members (get-aduser $_)} -
whatif
% : The -WhatIf and -Confirm parameters are not supported for script blocks.
At line:1 char:27
+ get-content C:\user.txt | %{Remove-ADGroupMember -Identity "group name ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [ForEach-Object], InvalidOperationException
    + FullyQualifiedErrorId : NoShouldProcessForScriptBlockSet,Microsoft.PowerShell.Commands.ForEachObjectCommand


Regards, Ajit


------------------------------------
Reply:

Hello

Thank you . :-)

The error message is 

PS C:\> get-content C:\user.txt | %{Remove-ADGroupMember -Identity "group name" -Members (get-aduser $_)} -
whatif
% : The -WhatIf and -Confirm parameters are not supported for script blocks.
At line:1 char:27
+ get-content C:\user.txt | %{Remove-ADGroupMember -Identity "group name ...
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    + CategoryInfo          : InvalidOperation: (:) [ForEach-Object], InvalidOperationException
    + FullyQualifiedErrorId : NoShouldProcessForScriptBlockSet,Microsoft.PowerShell.Commands.ForEachObjectCommand


Regards, Ajit

You need to move the "-whatif" flag inside the last brace.

get-content C:\user.txt | %{Remove-ADGroupMember -Identity "group name" -Members (get-aduser $_) -whatif}


------------------------------------

liscence of windows server 2008 r2

I already have a liscence of windows server 2008 and after I format my server and I want to install the windows server to zero is that I can use the same liscence? And in the case of losing liscence is what I can recover my liscence? Thanks
  • Moved by Rich Lewis Wednesday, February 22, 2017 4:12 PM This is a licensing question for Windows Server 2008

No comments:

Post a Comment

Setup is Split Across Multiple CDs

Setup is Split Across Multiple CDs Lately I've seen a bunch of people hitting installation errors that have to do with the fact th...