Quantcast
Viewing all 21070 articles
Browse latest View live

SharePoint Search Service upgrade to 2013 fails: "Inner Exception: An item with the same key has already been added."

Here's the situation:

  • Upgrading a SharePoint Server 2010 Search Service Application dB to our SharePoint 2013 SP 1 development environment, using the Management Shell
  • Running the following commands: 
$applicationPool= Get-SPServiceApplicationPool -Identity 'SearchService_AppPool'

$searchInst = Get-SPEnterpriseSearchServiceInstance -local

Restore-SPEnterpriseSearchServiceApplication -Name 'SearchServiceApplication' -applicationpool $applicationPool -databasename 'SearchServiceApplicationDB' -databaseserver SERVERNAME -AdminSearchServiceInstance $searchInst
  • Creates the search dBs (crawl, links, analytics) successfully; however, in the end, I get....
  • "Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed."

Looking at the ULS logs, I find the following:

Inner Exception: An item with the same key has already been added.
at System.Collections.Generic.Dictionary`2.Insert(TKey key, TValue value, Boolean add)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.FindAndFixExistingManagedProperties()     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.InstallManagedProperties(Boolean upgrade)     at Microsoft.Office.Server.Search.Administration.OOTBSchemaDefinition.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.UpdateAllOOTBProperties.Upgrade()     at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()

Exception: Action 15.0.107.0 of Microsoft.Office.Server.Search.Upgrade.SearchAdminDatabaseSequence failed.
at Microsoft.SharePoint.Upgrade.SPActionSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPDatabaseSequence.Upgrade()     at Microsoft.Office.Server.Search.Upgrade.SearchDatabaseSequence.Upgrade()     at Microsoft.SharePoint.Upgrade.SPUpgradeSession.Upgrade(Object o, Boolean bRecurse)

Anyone encounter anything like this during their search upgrade process? I'm not honestly even sure what duplicate value to look for at this point, if I were to run a SELECT Id, ClassId, ParentId, Name, Status, Version, Properties FROM Objects on"SharePoint_Config" in SSMS. Any insight or opinions on the matter are welcome; and thanks to those who choose to reply to this, in advance.


User Profile Service Application Error

Hi All,

Currently facing intermittent issue in our environment, where we are getting below error message while trying to access user profile service application:

++++++++++++++++++++++++++

Sorry, something went wrong

An unexpected error has occurred.

TECHNICAL DETAILS

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

GO BACK TO SITE

++++++++++++++++++++++++++

Environment Details:

SharePoint 2013 Standard with DEC 2013 CU

SQL 2008 R2

Windows 2008

3 WFE Server

2 Dedicated search Server

2 APP Server

Error in ULS:

User Profile Application Proxy failed to retrieve partitions from User Profile Application: Microsoft.Office.Server.UserProfiles.UserProfileApplicationNotAvailableException: UserProfileApplicationNotAvailableException_Logging :: UserProfileApplicationProxy.ApplicationProperties ProfilePropertyCache does not have xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx    
 at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.get_ApplicationProperties()    
 at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.get_PartitionIDs()    
 at Microsoft.Office.Server.Administration.UserProfileApplicationProxy.IsAvailable(SPServiceContext serviceContext)


MCP & MCTS [WSS 3.0/MOSS/SharePoint 2010] Visit: http://yagyashree.wordpress.com/

The Managed Metadata Service or Connection is currently not available

Hello Everyone,

I thought I would add another "Managed Metadata Service or Connection is currently not available" thread to this forum. 

It appears after following several articles I still cannot get manage my Managed Metadata Service from Central Admin.  I get the below error message.

Image may be NSFW.
Clik here to view.

I also see this in my ULS logs:

Failed to get term store for proxy 'Managed Metadata Service Application'. Exception: System.Collections.Generic.KeyNotFoundException: The given key was not present in the dictionary.   

at Microsoft.SharePoint.Taxonomy.Internal.XmlDataReader.GetDateTime(String name)   

at Microsoft.SharePoint.Taxonomy.Internal.SharedTermStore.Initialize(IDataReader dataReader, Guid termStoreIdValue, Boolean fromPersistedData)   

at Microsoft.SharePoint.Taxonomy.Internal.SharedTermStore..ctor(IDataReader dataReader, Guid termStoreId, Boolean fromPersistedData)   

at Microsoft.SharePoint.Taxonomy.Internal.DataAccessManager.GetTermStoreData(MetadataWebServiceApplicationProxy sharedServiceProxy, Boolean& partitionCreated)

One of the articles I found had several steps, however non worked for me.

http://blogs.msdn.com/b/allenwang/archive/2011/03/22/the-managed-metadata-or-connection-is-currently-not-available.aspx

Finially I simply deleted my Metadata Services Application and App Pool from IIS, re-created it and restarted IIS but still getting the same error message.

Only thing I didn't do is delete the database which I don't think I want to do.

Anything else I can try?

Thanks,

Ian...

Need to Save site as template to create dev environment replicating PROD env in SP 2013.

Save site as template is depecated in SP2013, but we enabled it from Sharepoint designer, yet we are facing issue.

When trying to save site as template of PROD site, it is throwing error.

PROD site is hosted in BPOS environment hence we do not have access in it.

Need your help to create a new dev environment replicating PROD, please suggest the best options.






list columns don't appear to fill out in upload aspx page

Hi,

When I try to create a new document in a list or library, the list columns that I have added don't appear on the upload window. It asks to only create a document.

What about the list columns I created? Do I have to fill the values for them after an item is uploaded? This was not the case in 2010. I could also fill the values for all the list column while uploading a new list item.

any advice please ?

thanks.

Maintenance Window Notification is for the wrong time

I seem to be having an issue with the times changing on their own when I try to set up a Maintenance notification.

Here is my PowerShell code, which is pretty simple

$maintenanceStartDate  = "09/8/2014 08:00:00 PM" # Date when the maintenance will start
$maintenanceEndDate    = "09/8/2014 09:00:00 PM" # Date when the maintenance will stop
$notificationStartDate = "09/5/2014 08:00:00 AM" # Date when the message will start being displayed
$notificationEndDate   = "09/8/2014 09:00:00 PM" # Date when the message will stop being displayed
$maintenanceLink       = "http://www.google.com" # This link will only appear if the maintenance duration is defined.
$maintenanceType       = "MaintenancePlanned"    # OPTIONS ARE: MaintenancePlanned | MaintenanceWarning
$readOnlyDays          = -1   			 # duration days
$readOnlyHours         = 0   			 # duration hours. 
$readOnlyMinutes       = 0   			 # duration minutes only appears if days and minutes are both zero

$maintenanceWindow = New-Object Microsoft.SharePoint.Administration.SPMaintenanceWindow   
$maintenanceWindow.MaintenanceEndDate    = $maintenanceEndDate 
$maintenanceWindow.MaintenanceStartDate  = $maintenanceStartDate
$maintenanceWindow.NotificationEndDate   = $notificationEndDate  
$maintenanceWindow.NotificationStartDate = $notificationStartDate      
$maintenanceWindow.MaintenanceType       = $maintenanceType
$maintenanceWindow.Duration              = New-Object System.TimeSpan( $readOnlyDays, $readOnlyHours, $readOnlyMinutes, 0)
$maintenanceWindow.MaintenanceLink       = $maintenanceLink

Now, when I look at $maintenanceWindow to see the values, the times have changed.

PS C:\> $maintenanceWindow

MaintenanceStartDate        : 9/9/2014 3:00:00 AM
MaintenanceEndDate          : 9/9/2014 4:00:00 AM
Duration                    : -1.00:00:00
NotificationStartDate       : 9/5/2014 3:00:00 PM
NotificationEndDate         : 9/9/2014 4:00:00 AM
MaintenanceType             : MaintenancePlanned
MaintenanceLink             : http://www.google.com
UpgradedPersistedProperties :
It seems like it is converting the times to GMT, but I have no idea why...

Office web apps on a public anonymous publishing site

Scenario: I have a anonymous public website that has a document library containing pdf's and word documents.  My publishing site pages have internal links within the page content to these documents.  The site is setup with anonymous access and with Office Web Apps 2013 it all works.

When I bind to Office Web Apps 2013 farm from the SP2013 website, the hook-up is perfect.

The only issue I have is: If the user is anonymous and they try open a document.  The user gets a login prompted and when they cancel the browser shows a 401 unauthorised exception. 

My question is does Office web apps actually work like this?  If anyone has an anonymous SP2013 website using Office web apps, do you get the same behaviour? 

More Info:

If I open http://www.demo.com/documents/mydoc.pdf I get challenged/prompted.

http://www.demo.com/documents/mydoc.pdf?web=1 works perfectly, but I don't want to have to go thru the entire site to amend the content with the extra parameter for internal links.

Can someone with an anonymous SP site and WCA (Office web apps) please confirm this is the behaviour of the product?


Event Log Errors Perflib 1008, PerfNet 2004

Every so often I get Event Log Errors Perflib 1008, PerfNet 2004

This is a New Sharepoint 2013 Server with July 2014 CU on Windows Server 2012R2 . 

I'v reregisterd the DLLs, done a few registry tweaks, though not having any luck. 

Any other Suggestions?

Thanks,

Log Name:      Application
Source:        Microsoft-Windows-Perflib
Date:          9/5/2014 9:42:32 AM
Event ID:      1008
Task Category: None
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      
Description:
The Open Procedure for service "FIMSynchronizationService" in DLL "C:\Program Files\Microsoft Office Servers\15.0\Synchronization Service\Bin\mmsperf.dll" failed. Performance data for this service will not be available. The first four bytes (DWORD) of the Data section contains the error code.
Event Xml:<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"><System><Provider Name="Microsoft-Windows-Perflib" Guid="{13B197BD-7CEE-4B4E-8DD0-59314CE374CE}" EventSourceName="Perflib" /><EventID Qualifiers="49152">1008</EventID><Version>0</Version><Level>2</Level><Task>0</Task><Opcode>0</Opcode><Keywords>0x80000000000000</Keywords><TimeCreated SystemTime="2014-09-05T16:42:32.000000000Z" /><EventRecordID>109378</EventRecordID><Correlation /><Execution ProcessID="0" ThreadID="0" /><Channel>Application</Channel><Computer></Computer><Security /></System><UserData><EventXML xmlns="Perflib"><param1>FIMSynchronizationService</param1><param2>C:\Program Files\Microsoft Office Servers\15.0\Synchronization Service\Bin\mmsperf.dll</param2><binaryDataSize>8</binaryDataSize><binaryData>0200000000000000</binaryData></EventXML></UserData></Event>


Log Name:      Application
Source:        Microsoft-Windows-PerfNet
Date:          9/5/2014 9:42:32 AM
Event ID:      2004
Task Category: None
Level:         Error
Keywords:      Classic
User:          N/A
Computer:      
Description:
Unable to open the Server service performance object. The first four bytes (DWORD) of the Data section contains the status code.
Event Xml:<Event xmlns="http://schemas.microsoft.com/win/2004/08/events/event"><System><Provider Name="Microsoft-Windows-PerfNet" Guid="{CAB2B8A5-49B9-4EEC-B1B0-FAC21DA05A3B}" EventSourceName="PerfNet" /><EventID Qualifiers="49152">2004</EventID><Version>0</Version><Level>2</Level><Task>0</Task><Opcode>0</Opcode><Keywords>0x80000000000000</Keywords><TimeCreated SystemTime="2014-09-05T16:42:32.000000000Z" /><EventRecordID>109379</EventRecordID><Correlation /><Execution ProcessID="0" ThreadID="0" /><Channel>Application</Channel><Computer></Computer><Security /></System><EventData><Binary>220000C0</Binary></EventData></Event>


SSRS Content Type missing after Sharepoint 2013 SP1 Installation

Recently I have Installed SharePoint SP1 (15.0.4571.1502)

I have Create a New Web application and SC with BI Center Template.

Activated the Report Server integration feature and deployed PowerPivot Web Application Solution. Now When I wanted to Add SSRS Content types to Data Connections Library, I cannot see them. They are missing in Site content Types. Link :New WebApplication

However I was able to add Report Data Source by copying the Create Report Data Source Link from the Old Site Address and Replaced with Current Site and was able to save it to the Data Connections library. Still cant see the content Types. Link:New Web Application Content

I have old BI center Web Site which has SSRS Content types. This was created before installing the SharePoint SP1, they are still visible and I can add or remove them. Link:Old Web Application

Not sure if the SharePoint 213 SP1 has a Bug or if I am doing something wrong

Thanks

Manoj Manda



Can we install PowerPivot for SharePoint on a SQL cluster?

We are going to deploy SharePoint 2013 with PowerPivot for SharePoint (installed from SQL Server media). According to what I've read out there for a small or medium farm, the recommendation is to install PowerPivot for SharePoint onevery SharePoint application server in the farm. However, accoding to the licensing doc I've pasted below, PowerPivot can be run outside the SharePoint farm. We are going with SQL Server 2012 Enterprise edition. PowerPivot requires a SQL Server license for each server. To save money on licenisng, can we install PowerPivot for SharePoint on the 2 SQL Server cluster nodes (as a separate instance of course)?

Example License Topologies and Costs for SQL Server 2012 Self-Service Business Intelligence

http://msdn.microsoft.com/en-us/library/dn305848(v=sql.110).aspx

Image may be NSFW.
Clik here to view.

 


http://vcollogan.knows.it http://twitter.com/orbhot

Sharepoint 2013 content deployment tool

Hi,

Is there a free tool out there that I can use to deploy lists etc. from one SharePoint 2013 site collection to another?

thanks,

Sherazad


Sherazad

Site Administrators Keep Getting Deleted

In SharePoint 2010 and SharePoint 2013, site collection administrators keep getting removed without another Site Admin doing it.  At first I thought it was another Site Admin but it has also happened to him and I know I did not remove him.  Has anyone else had this happen and, if so, do you know how to stop it from happening?

Sharepoint 2013 is to slow..

Hi,my sharepoint page load  too slow ... If i click a link one time they are slow :10 second, when i double click the link the pages are very fast why? hardware is fine ..

SSRS 2008 Sharepoint Integrated Mode Upgrade to SSRS 2012 Sharepoint Integrated Mode with Sharepoint 2013

Hi, I've just gone through a long and complicated Sharepoint Upgrade from 2010 to 2013 (long story). It wasn't all Sharepoints fault, there where multiple third party interfacing software packages. The last tricky piece of the puzzle is SSRS (Sharepoint Integrated Mode).

I've installed SSRS 2012 on the new sharepoint server and configured it in sharepoint. I have three new databases in the sql server (it's sql server 2008, this isn't pertinent to the issue, that I'm aware of). I believe this is configured correctly - I've downloaded report builder and I'm able to connect to the sites). Just as fyi, there wasn't an in-place 2008 SSRS on the machine to upgrade, via the Sql Server Installer. It was a case of new hardware etc.

Now I have two databases from my old SSRS 2008 (sharepoint 2010 integrated mode) that I want to upgrade and use. These contain I assume the reports the upgraded sharepoint environment want to access (it is of course a new farm, but with upgraded content databases etc). My question is how do I upgrade and use my old SSRS databases in the new SSRS 2012 / Sharepoint 2013 environment? Many thanks for any ideas, Thanks Dan.

When connecting to a server farm in sharepoint foundation 2013 cannot create new farm error: One or more types failed to load

When trying to create a new server farm in the sharepoint foundation 2013 we get a following error :

The local farm is not accessible. Cmdlets with FeatureDependencyId are not registered.
PS C:\Users\Administrator> New-SPConfigurationDatabase

cmdlet New-SPConfigurationDatabase at command pipeline position 1
Supply values for the following parameters:
DatabaseName: SharePoint_Config
DatabaseServer: PC78\SQLEXPRESS,25111
FarmCredentials
Passphrase: *********
New-SPConfigurationDatabase : One or more types failed to load. Please refer
to the upgrade log for more details.
At line:1 char:1
+ New-SPConfigurationDatabase+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~+ CategoryInfo          : InvalidData: (Microsoft.Share...urationDatabase:
   SPCmdletNewSPConfigurationDatabase) [New-SPConfigurationDatabase], SPUpgra
  deException+ FullyQualifiedErrorId : Microsoft.SharePoint.PowerShell.SPCmdletNewSPCon
   figurationDatabase

And the error log is shown below :

Microsoft.SharePoint.Upgrade.SPUpgradeException: One or more types failed to load. 
Please refer to the upgrade log for more details.     
at Microsoft.SharePoint.Upgrade.SPActionSequence.LoadUpgradeActions()     
at Microsoft.SharePoint.Upgrade.SPActionSequence.get_ActionsInternal()     
at Microsoft.SharePoint.Upgrade.SPUtility.GetLatestTargetSchemaVersionByMajorVersion(Type typeActionSequence, Int32 majorVer)     
at Microsoft.SharePoint.Upgrade.SPUtility.get_CurrentSPSiteWssTargetSchemaVersion()     
at Microsoft.SharePoint.Administration.SPSiteCollection.Add(SPContentDatabase database, SPSiteSubscription siteSubscription, String siteUrl, String title, String description, UInt32 nLCID, Int32 compatibilityLevel, String webTemplate, String ownerLogin, String ownerName, String ownerEmail, Strin... b712a522-fa85-49eb-b59c-dedf55295504
        ...g secondaryContactLogin, String secondaryContactName, String secondaryContactEmail, String quotaTemplate, String sscRootWebUrl, Boolean useHostHeaderAsSiteName, Boolean overrideCompatibilityRestriction)     
at Microsoft.SharePoint.Administration.SPSiteCollection.Add(SPSiteSubscription siteSubscription, String siteUrl, String title, String description, UInt32 nLCID, Int32 compatibilityLevel, String webTemplate, String ownerLogin, String ownerName, String ownerEmail, String secondaryContactLogin, String secondaryContactName, String secondaryContactEmail, Boolean useHostHeaderAsSiteName)     
at Microsoft.SharePoint.Administration.SPAdministrationWebApplication.CreateDefaultInstance(SqlConnectionStringBuilder administrationContentDatabase, SPWebService adminService, IdentityType identityType, ... b712a522-fa85-49eb-b59c-dedf55295504
     ...String farmUser, SecureString farmPassword)     
at Microsoft.SharePoint.Administration.SPFarm.CreateAdministrationWebService(SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword)    
at Microsoft.SharePoint.Administration.SPFarm.CreateBasicServices(SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword)     
at Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuilder configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase, IdentityType identityType, String farmUser, SecureString farmPassword, SecureString masterPassphrase)     
at Microsoft.SharePoint.Administration.SPFarm.Create(SqlConnectionStringBuil... b712a522-fa85-49eb-b59c-dedf55295504
            ...der configurationDatabase, SqlConnectionStringBuilder administrationContentDatabase, String farmUser, SecureString farmPassword, SecureString masterPassphrase)     
at Microsoft.SharePoint.PowerShell.SPCmdletNewSPConfigurationDatabase.InternalProcessRecord()     
at Microsoft.SharePoint.PowerShell.SPCmdlet.ProcessRecord() b712a522-fa85-49eb-b59c-dedf55295504
Error Category: InvalidData    Target Object  Microsoft.SharePoint.PowerShell.SPCmdletNewSPConfigurationDatabase  Details  NULL  RecommendedAction NULL b712a522-fa85-49eb-b59c-dedf55295504
 Leaving ProcessRecord Method of New-SPConfigurationDatabase.   e9ae5ba6-c499-0000-d35c-aee999c4cf01
we are using server 2012 R2 and we don't have office 2010 installed


My Site Cleanup Job Sends Invalid URL Link to Managers

The My Site Cleanup Job sends a default email to managers 14 days prior to an employee's My Site deletion by default. This email includes a link to the departing employee's My Site, where the respective manager who receives the email is made secondary site collection administrator. 

The link embedded in the email doesn't work. This link is of the format: http://<root url>/my/personal/username. Upon clicking on it, the manager(s) see the 'Something Went Wrong' message page. 

Note that the http://<root url>/my/personal/username/default.aspx link works for that very same manager. 

Is this a bug? I know we cannot edit the email message from the cleanup job, but it is sending an invalid URL for a first time login user - we use Windows Auth and Claims. 

Thanks. 


Radu P.

Custom Web Template fails, List does not exist

Can somebody help me with this?
After I patched the SharePoint 2013 SP 1 to the April 2014 CU I've been getting this error.

When I apply a custom template I keep getting the error:

"Exception calling ApplyWebTemplate with 1 argument: List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user."

When I check the logs I found this:

"05/15/2014 11:04:31.83PowerShell_ISE.exe (0x285C)0x1A2CSharePoint FoundationFeature Infrastructure889wHighThe element of type 'ListInstance' for feature 'test5ListInstances' (id: 2acac41f-5723-4e3e-985f-35620a5696fc) threw an exception during activation: List does not exist.  The page you selected contains a list that does not exist.  It may have been deleted by another user.01b11c40-f800-0000-e439-4b6b816fcf01"

And this:

05/15/2014 11:54:56.07PowerShell_ISE.exe (0x1E1C)0x1DF8SharePoint FoundationGeneralaix9jHighSPRequest.GetMetadataForUrl: UserPrincipalName=i:0).w|s-1-5-21-3659363940-654044839-132917978-4964, AppPrincipalName= ,bstrUrl=http://portal.domain.com/customer/testerror1/Lists/TaxonomyHiddenList ,METADATAFLAGS=5901b11c50-f800-0002-c532-4b6b816fcf01

Here are the full logs:

pastebin.com/vnHerVAw and another one: pastebin.com/RVg3kD5P


Missing web part

Hello,

We migrated a site from 2007 to 2013. Everything looks fine. However, when we try to access the content of a specific list we in the target SharePoint 2013 we get the following error:

Could not find the connection provider Web Part with ID "g_dbbf2940_a31a_4cbf_9e8b_8a0d55bdb9e9".

It appears that this list was using a specific web part for a look up feature and of course the web part didn't make it in the migration. My question is: how can I find which web part that is in SharePoint 2007 only using the web ID included in the error which looks like a GUID but it's not?

Thanks

Server side dependencies are missing - sharepoint 2013

Hi all,

I installed and configured sharepoint 2013 server(enterprise edition) with sql 2012 on windows server 2012.

I used all the default settings for configuration. It was created central administration .

But in central administration - i can't see site actions menu on left hand side (with options like edit page,create new site,more options,site permissions,sharepoint designer,...).

And i can see the site settings link on the right hand side when i clicked on that clicked on themes i can't see any out of box themes.

And inside the health analyzer these are the messages i am getting.

Server side dependencies are missing

Missing setup file Features\ReportServer\ReportViewer.dwp] is referenced [2] times in the database [WSS_Content], but exists only under Microsoft SharePoint Foundation 2010 setup folder. Consider upgrading the feature/solution which contains this file to the latest version. One or more setup files are referenced in the database [WSS_Content], but are not installed on the current farm. Please install any feature or solution which contains these files.

[MissingWebPart] WebPart class [28c23aec-2537-68b3-43b6-845b13cea19f] is referenced [2] times in the database [SharePoint_AdminContent_864b9f02-c0e3-48dd-b697-41068c0c5aa9], but is not installed on the current farm. Please install any feature/solution which contains this web part. One or more web parts are referenced in the database [SharePoint_AdminContent_864b9f02-c0e3-48dd-b697-41068c0c5aa9], but are not installed on the current farm. Please install any feature or solution which contains these web parts.

Please Anybody help me To solve these issues.

Thank you Very much.

"printflow", printing services in SharePoint

We use SharePoint 2013 in O365 so everything is in the cloud.

Often we need a printout of standard sets of documents spread throughout SharePoint. I am looking for an App where this can be combined automatically and print a pack from each source file at the click of a button.

for the sake of conversation we are calling it printflow. I found sharepointprinting.com but this only seems to work if you have an on premise server

Viewing all 21070 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>