<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title>Tech Growing Pains - Latest Comments</title><link>http://techgrowingpains.disqus.com/</link><description>None</description><atom:link href="https://techgrowingpains.disqus.com/comments.rss" rel="self"></atom:link><language>en</language><lastBuildDate>Wed, 21 Sep 2016 08:20:24 -0000</lastBuildDate><item><title>Re: The Case of the Missing Blog Site Template</title><link>http://www.techgrowingpains.com/2012/05/the-case-of-the-missing-blog-site-template/#comment-2908313288</link><description>&lt;p&gt;Thank you!&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">cecile</dc:creator><pubDate>Wed, 21 Sep 2016 08:20:24 -0000</pubDate></item><item><title>Re: How to copy/move SharePoint items</title><link>http://www.techgrowingpains.com/2010/07/how-to-copymove-sharepoint-items/#comment-2684435139</link><description>&lt;p&gt;Thank you!  This works for me... with one exception... The "Assigned to" column did not copy.  How do I copy this?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Christine</dc:creator><pubDate>Thu, 19 May 2016 12:07:56 -0000</pubDate></item><item><title>Re: Out of control SharePoint_Config Database</title><link>http://www.techgrowingpains.com/2012/01/out-of-control-sharepoint_config-database/#comment-2393108572</link><description>&lt;p&gt;Thanks !!&lt;br&gt;I added the commands in ps1 script and executed with below &lt;br&gt;for($i=1;$i -le 100; $i++)&lt;br&gt;{&lt;br&gt;Write-Host $i&lt;br&gt;. 'Timer.ps1'&lt;br&gt;Start-sleep -Seconds 1&lt;br&gt;Write-Host " "&lt;br&gt;}&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">SP13 User</dc:creator><pubDate>Fri, 04 Dec 2015 09:42:40 -0000</pubDate></item><item><title>Re: SharePoint PowerShell: Backup and Restore a List or Document Library</title><link>http://www.techgrowingpains.com/2011/01/sharepoint-powershell-backup-and-restore-a-list-or-document-library/#comment-2304514190</link><description>&lt;p&gt;is that possible to restore SharePoint online list using powershell ?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">akshay nangare</dc:creator><pubDate>Tue, 13 Oct 2015 02:15:34 -0000</pubDate></item><item><title>Re: Out of control SharePoint_Config Database</title><link>http://www.techgrowingpains.com/2012/01/out-of-control-sharepoint_config-database/#comment-2133246079</link><description>&lt;p&gt;For development/QA/Test environments (NOT PRODUCTION!!!) I recommend:&lt;br&gt;1. Open up SQL Server Management Studio (SSMS) for the SQL Server that holds SharePoint databases.&lt;/p&gt;&lt;p&gt;2. In a new query window:&lt;br&gt;USE [master]&lt;br&gt;GO&lt;/p&gt;&lt;p&gt;ALTER DATABASE [model] SET RECOVERY SIMPLE WITH NO_WAIT&lt;/p&gt;&lt;p&gt;GO&lt;br&gt;(the above makes sure any NEW SQL databases will start out life with Recovery Model Simple - the easiest one to reclaim disk space from)&lt;/p&gt;&lt;p&gt;3. For the existing, possibly bloated SharePoint databases, substitute the appropriate value for your situation in the following commands:&lt;/p&gt;&lt;p&gt;use [master]&lt;br&gt;GO&lt;/p&gt;&lt;p&gt;ALTER DATABASE [change-this-value] SET RECOVERY SIMPLE WITH NO_WAIT&lt;/p&gt;&lt;p&gt;4. Bring up SSMS Object Explorer window (keyboard short-cut F7)&lt;/p&gt;&lt;p&gt;5. Expand Databases in the tree view.&lt;/p&gt;&lt;p&gt;6. Single-click on one of the SharePoint databases, for example SharePoint_Config, to highlight it.&lt;/p&gt;&lt;p&gt;7. Right-click on that same database, and choose Properties.&lt;/p&gt;&lt;p&gt;8. In the "Select a page" section of the resulting pop-up window, single-click on Options.&lt;/p&gt;&lt;p&gt;9. If the Recovery Model already says Simple, you can click Cancel.  If it says anything else, pop open the dropdown listbox and choose Simple, followed by OK.&lt;/p&gt;&lt;p&gt;10. Repeat steps 6-9 for each SharePoint-related database.&lt;/p&gt;&lt;p&gt;11. Return to SSMS Object Explorer (F7 if it's no longer visible).&lt;/p&gt;&lt;p&gt;12. Expand the Management section of the tree structure - you might not see Management if the user you're logged in with doesn't have sufficient SQL Server privileges.&lt;/p&gt;&lt;p&gt;13. Right-click on Maintenance Plans and choose Maintenance Plan wizard.&lt;/p&gt;&lt;p&gt;14. Click Next.&lt;/p&gt;&lt;p&gt;15. Choose a name such as ShrinkDbs and optionally fill in a description.  Click Next.&lt;/p&gt;&lt;p&gt;16. When the set of checkboxes appears in the next screen, check only Shrink Database and click Next.&lt;/p&gt;&lt;p&gt;17. Click Next again to access the Task Order defaults.&lt;/p&gt;&lt;p&gt;18. In the databases dropdown, choose All User Databases and check the Ignore database where the state is not online checkbox.&lt;/p&gt;&lt;p&gt;19. In the Define Shrink Database Task dialog, change the two checkboxes to 1 and leave the radio button choice of return freed space to operating system set.  Click Next.&lt;/p&gt;&lt;p&gt;20. Click Next again.&lt;/p&gt;&lt;p&gt;21. Click Finish and wait for the Wizard to finish all 5 of its tasks before clicking the Close button.&lt;/p&gt;&lt;p&gt;22. Return to SSMS Object Explorer (use F7 if necessary to make it visible).&lt;/p&gt;&lt;p&gt;23. Right click on your newly created Maintenance Plan and choose Execute.&lt;/p&gt;&lt;p&gt;24. Wait until the pop-up window indicates Success and then click Close.&lt;/p&gt;&lt;p&gt;At this point your SharePoint databases, particularly the SQL Server log files (the ones that have a .ldf exetension) are the smallest they will ever be.  Keep in mind that as SharePoint timer jobs and other SharePoint database activities run, those .LDF files will begin to grow again, so make sure you execute that Shrink Databases plan on a regular basis; otherwise, the same issue will happen again.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">WisdomGuidedByExperience</dc:creator><pubDate>Mon, 13 Jul 2015 09:14:51 -0000</pubDate></item><item><title>Re: Installing SharePoint 2013 Office Web Applications Server</title><link>http://www.techgrowingpains.com/2012/08/installing-sharepoint-2013-office-web-applications-server/#comment-1761071834</link><description>&lt;p&gt;The one time I had this problem I had to use the ISO of the Windows server media. I them mounted it to the system using a virtual drive software. I hope this helps.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">something</dc:creator><pubDate>Sat, 27 Dec 2014 15:36:23 -0000</pubDate></item><item><title>Re: SharePoint PowerShell: Backup and Restore a List or Document Library</title><link>http://www.techgrowingpains.com/2011/01/sharepoint-powershell-backup-and-restore-a-list-or-document-library/#comment-1761069022</link><description>&lt;p&gt;Make sure you use the trailing '/' in the URL. SharePoint is very finicky.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">something</dc:creator><pubDate>Sat, 27 Dec 2014 15:33:41 -0000</pubDate></item><item><title>Re: Out of control SharePoint_Config Database</title><link>http://www.techgrowingpains.com/2012/01/out-of-control-sharepoint_config-database/#comment-1761065359</link><description>&lt;p&gt;No, you don't want to directly manipulate SharePoint SQL tables directly. Microsoft is very clear that if you directly read/edit the SQL table it could invalidate your support from Microsoft.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">something</dc:creator><pubDate>Sat, 27 Dec 2014 15:30:00 -0000</pubDate></item><item><title>Re: Out of control SharePoint_Config Database</title><link>http://www.techgrowingpains.com/2012/01/out-of-control-sharepoint_config-database/#comment-1761064024</link><description>&lt;p&gt;I meant the section where you are updating the $history values. You want to make sure the set it back to the default value after you have trimmed the table down to size.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">something</dc:creator><pubDate>Sat, 27 Dec 2014 15:28:41 -0000</pubDate></item><item><title>Re: How to copy/move SharePoint items</title><link>http://www.techgrowingpains.com/2010/07/how-to-copymove-sharepoint-items/#comment-1761059235</link><description>&lt;p&gt;Glad I could help&lt;br&gt;-Javi&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">something</dc:creator><pubDate>Sat, 27 Dec 2014 15:24:00 -0000</pubDate></item><item><title>Re: How to copy/move SharePoint items</title><link>http://www.techgrowingpains.com/2010/07/how-to-copymove-sharepoint-items/#comment-1749792076</link><description>&lt;p&gt;Thanks !!You saved a lot of time of mine.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tarun</dc:creator><pubDate>Fri, 19 Dec 2014 02:04:11 -0000</pubDate></item><item><title>Re: Out of control SharePoint_Config Database</title><link>http://www.techgrowingpains.com/2012/01/out-of-control-sharepoint_config-database/#comment-1734353184</link><description>&lt;p&gt;I am curious to know what you mean by "don't forget to update() the changes.  Sorry I am new to this....&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Tim</dc:creator><pubDate>Tue, 09 Dec 2014 22:02:00 -0000</pubDate></item><item><title>Re: SharePoint PowerShell: Backup and Restore a List or Document Library</title><link>http://www.techgrowingpains.com/2011/01/sharepoint-powershell-backup-and-restore-a-list-or-document-library/#comment-1660648157</link><description>&lt;p&gt;&lt;a href="http://sharepointshah.blogspot.com" rel="nofollow noopener" target="_blank" title="http://sharepointshah.blogspot.com"&gt;http://sharepointshah.blogs...&lt;/a&gt;&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">rider</dc:creator><pubDate>Thu, 30 Oct 2014 02:14:45 -0000</pubDate></item><item><title>Re: SharePoint Time Zone confusion</title><link>http://www.techgrowingpains.com/2012/05/sharepoint-time-zone-confusion-2/#comment-1617570823</link><description>&lt;p&gt;Internally (in the database), dates ARE stored in UTC.&lt;/p&gt;&lt;p&gt;However, every time you access them they are converted to the current context offset; this applies both through the UI and through the API (i.e. programmatically).&lt;/p&gt;&lt;p&gt;Although the API takes a DateTime value, it ignores the setting of DateTimeKind. i.e. trying to putting 00:00 and setting to Utc doesn't actually work; it is still interpreted as a local time.&lt;/p&gt;&lt;p&gt;You are correct that the article, which uses SharePoint Manager (which uses the API), won't get a UTC time unless the region (or default) is set to UTC.&lt;/p&gt;&lt;p&gt;The only way to see the internal UTC values is to open up the actual database with SQL Manager and look directly.&lt;/p&gt;&lt;p&gt;Usually this is irrelevant, as every access (API or UI) converts to the region of the current context.&lt;/p&gt;&lt;p&gt;The only time there is a problem is if you are writing server side code that retrieves values from the API with elevated permissions; in this case the code runs in the elevated context, which is usually the site collection default regional settings.&lt;/p&gt;&lt;p&gt;If the user has custom settings the you need to adjust when translating back from the elevated context to the user context.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sly Gryphon</dc:creator><pubDate>Fri, 03 Oct 2014 01:27:31 -0000</pubDate></item><item><title>Re: SharePoint PowerShell: Backup and Restore a List or Document Library</title><link>http://www.techgrowingpains.com/2011/01/sharepoint-powershell-backup-and-restore-a-list-or-document-library/#comment-1606979407</link><description>&lt;p&gt;Hey, that works really well. But when I try to export a list residing in a subsite, it doesn't work. I receive and error. What is the syntax for that? I would like to do:&lt;br&gt;Export-SPWeb &lt;a href="http://www.domain.com/&lt;subsitename&gt;" rel="nofollow noopener" target="_blank" title="http://www.domain.com/&lt;subsitename&gt;"&gt;http://www.domain.com/&amp;lt;subs...&lt;/a&gt;  -itemurl "/Lists/test" -path "c:\test.cmp"&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Sher</dc:creator><pubDate>Fri, 26 Sep 2014 10:52:18 -0000</pubDate></item><item><title>Re: Installing SharePoint 2013 Office Web Applications Server</title><link>http://www.techgrowingpains.com/2012/08/installing-sharepoint-2013-office-web-applications-server/#comment-1577814038</link><description>&lt;p&gt;I tried to install the ink and handwriting services but it says the files are missing and I need to provide an alternate path?  I copied the source files from the DVD to the hard drive, but still no luck...  All I'm trying to do is make it so I can upload folders into sharepoint 2013 instead of just files, and I can't switch to Folder View until I install this and enable Desktop Experience...  Did you have any issues installing the handwriting services?  Thanks - Matt&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Matt Scala</dc:creator><pubDate>Sun, 07 Sep 2014 09:26:08 -0000</pubDate></item><item><title>Re: Trial Period for this Product has Expired Error</title><link>http://www.techgrowingpains.com/2011/01/trial-period-for-this-product-has-expired-error/#comment-1463311912</link><description>&lt;p&gt;You are a life saver bro.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">anil4urhelp</dc:creator><pubDate>Tue, 01 Jul 2014 09:25:53 -0000</pubDate></item><item><title>Re: How to copy/move SharePoint items</title><link>http://www.techgrowingpains.com/2010/07/how-to-copymove-sharepoint-items/#comment-1185637965</link><description>&lt;p&gt;check in&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">dergg</dc:creator><pubDate>Fri, 03 Jan 2014 12:53:47 -0000</pubDate></item><item><title>Re: SharePoint Time Zone confusion</title><link>http://www.techgrowingpains.com/2012/05/sharepoint-time-zone-confusion-2/#comment-1141346125</link><description>&lt;p&gt;SharePoint does not automatically store dates in UTC. Dates are stored in the timezone configured on the OS level of the WFE you're hitting. Just try to save 1900-01-01T00:00:00Z (earliest possible date in SP) in a DateTime field on a server which is on US Eastern time. It won't work. So the reason its UTC in your example is because your server happens to be on Unversal Time.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Ole Kristian Mørch-Storstein</dc:creator><pubDate>Wed, 27 Nov 2013 11:06:19 -0000</pubDate></item><item><title>Re: How to Add an Alternate Access Mapping (AAM)</title><link>http://www.techgrowingpains.com/2012/05/how-to-add-an-alternate-access-mapping-aam/#comment-1111180118</link><description>&lt;p&gt;I have a similar issue, the configuration worked, but all the documents are inaccessible. maybe due to some other configuration, dunno.&lt;br&gt;EDIT: It is possible to download and edit outside of the browser, but I inside no can do.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">pmiranda</dc:creator><pubDate>Wed, 06 Nov 2013 10:54:07 -0000</pubDate></item><item><title>Re: How to Add an Alternate Access Mapping (AAM)</title><link>http://www.techgrowingpains.com/2012/05/how-to-add-an-alternate-access-mapping-aam/#comment-1082976316</link><description>&lt;p&gt;I have entered my new URL into "Intranet" field in another port (for example: http://sharepoint:70) it works but all the documents via this address are in Read-Only mode and cannot be Edited on server, that would be Great if you could help me on this.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">roozbeh</dc:creator><pubDate>Tue, 15 Oct 2013 08:25:53 -0000</pubDate></item><item><title>Re: How to Add an Alternate Access Mapping (AAM)</title><link>http://www.techgrowingpains.com/2012/05/how-to-add-an-alternate-access-mapping-aam/#comment-1029805818</link><description>&lt;p&gt;I followed the steps, but new URL is not working. Do I need to do anything with DNS?&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Pravin Wani</dc:creator><pubDate>Wed, 04 Sep 2013 13:34:54 -0000</pubDate></item><item><title>Re: How to Hide a SharePoint Document Library</title><link>http://www.techgrowingpains.com/2010/01/how-to-hide-a-sharepoint-document-library/#comment-998330897</link><description>&lt;p&gt;Create new list/library, click on it and then save the url.&lt;br&gt;goto the permission settings and stop inheriting. add users/groups who you want to have access to the list.&lt;br&gt;goto site settings list and libraries select list and goto "title, description and navigation" make sure you say no to add quick launch link.&lt;br&gt;Go back to page delete the list from the page.&lt;br&gt;Goto to site settings "navigation" add a new link and manually paste the saved url in. Set the target audience to the required users.&lt;br&gt;Library does not display on page by default. (hidden)&lt;br&gt;Link in the quick launch will only show for allowed users.(hidden)&lt;br&gt;If other users try to access library via all site content etc they will get an error.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">drew</dc:creator><pubDate>Tue, 13 Aug 2013 01:32:00 -0000</pubDate></item><item><title>Re: SharePoint PowerShell: Backup and Restore a List or Document Library</title><link>http://www.techgrowingpains.com/2011/01/sharepoint-powershell-backup-and-restore-a-list-or-document-library/#comment-992094523</link><description>&lt;p&gt;So simple and clean, nice work.&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Mehboob Ali Yousafzai</dc:creator><pubDate>Wed, 07 Aug 2013 18:00:53 -0000</pubDate></item><item><title>Re: The Case of the Missing Blog Site Template</title><link>http://www.techgrowingpains.com/2012/05/the-case-of-the-missing-blog-site-template/#comment-985593741</link><description>&lt;p&gt;thankyou for this - very helpful. :)&lt;/p&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">jacob</dc:creator><pubDate>Fri, 02 Aug 2013 07:52:12 -0000</pubDate></item></channel></rss>